Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Nektar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dappur
Nektar
Commits
2ce79b6c
Commit
2ce79b6c
authored
8 years ago
by
Kilian Lackhove
Committed by
Douglas Serson
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
print an error message for erroneous equations when compiled with RELEASE
(cherry picked from commit
d85b5f1a
)
parent
7ae53926
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
library/LibUtilities/BasicUtils/Equation.h
+2
-2
2 additions, 2 deletions
library/LibUtilities/BasicUtils/Equation.h
with
2 additions
and
2 deletions
library/LibUtilities/BasicUtils/Equation.h
+
2
−
2
View file @
2ce79b6c
...
...
@@ -80,7 +80,7 @@ namespace Nektar
{
m_expr_id
=
-
1
;
std
::
string
msg
(
std
::
string
(
"Equation::Equation() fails on expression ["
)
+
m_expr
+
std
::
string
(
"]
\n
"
));
ASSERTL
1
(
false
,
msg
);
ASSERTL
0
(
false
,
msg
);
throw
e
;
return
;
}
...
...
@@ -88,7 +88,7 @@ namespace Nektar
{
m_expr_id
=
-
1
;
std
::
string
msg
(
std
::
string
(
"Equation::Equation() fails on expression ["
)
+
m_expr
+
std
::
string
(
"]
\n
"
));
ASSERTL
1
(
false
,
msg
);
ASSERTL
0
(
false
,
msg
);
throw
e
;
return
;
}
...
...
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