Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
eigen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
What's new
5
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LiangTsao
eigen
Commits
2265a5e0
There was an error fetching the commit references. Please try again later.
Commit
2265a5e0
authored
3 months ago
by
Antonio Sánchez
Committed by
Charles Schlosser
3 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix commainitializer noexcept test.
parent
619be0de
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Eigen/src/Core/CommaInitializer.h
+7
-1
7 additions, 1 deletion
Eigen/src/Core/CommaInitializer.h
with
7 additions
and
1 deletion
Eigen/src/Core/CommaInitializer.h
+
7
−
1
View file @
2265a5e0
...
...
@@ -90,7 +90,13 @@ struct CommaInitializer {
return
*
this
;
}
EIGEN_DEVICE_FUNC
inline
~
CommaInitializer
()
{
finished
();
}
EIGEN_DEVICE_FUNC
inline
~
CommaInitializer
()
#if defined VERIFY_RAISES_ASSERT && (!defined EIGEN_NO_ASSERTION_CHECKING) && defined EIGEN_EXCEPTIONS
noexcept
(
false
)
// Eigen::eigen_assert_exception
#endif
{
finished
();
}
/** \returns the built matrix once all its coefficients have been set.
* Calling finished is 100% optional. Its purpose is to write expressions
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment