Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
66a2fd59
Commit
66a2fd59
authored
Feb 17, 2013
by
Praetorius, Simon
Browse files
AMDiS now compiles with -pedantic
parent
ac632050
Changes
1
Hide whitespace changes
Inline
Side-by-side
extensions/base_problems/BaseProblem.h
View file @
66a2fd59
...
...
@@ -38,7 +38,6 @@ public:
/// calls \ref initData, \ref fillOperators and \ref fillBoundaryConditions in this ordering
virtual
void
initTimeInterface
()
{
FUNCNAME
(
"BaseProblem::initTimeInterface()"
);
initData
();
fillOperators
();
fillBoundaryConditions
();
...
...
@@ -50,14 +49,12 @@ public:
/// calls \ref initDataFromFile
virtual
void
solveInitialProblem
(
AdaptInfo
*
adaptInfo
)
{
FUNCNAME
(
"BaseProblem::solveInitialProblem()"
);
Flag
initFlag
=
initDataFromFile
(
adaptInfo
);
}
/// calls \ref writeFiles
virtual
void
transferInitialSolution
(
AdaptInfo
*
adaptInfo
)
{
FUNCNAME
(
"BaseProblem::transferInitialSolution()"
);
oldMeshChangeIdx
=
getMesh
()
->
getChangeIndex
();
writeFiles
(
adaptInfo
,
false
);
}
...
...
@@ -76,7 +73,6 @@ public:
/// Calls writeFiles of the problem
virtual
void
writeFiles
(
AdaptInfo
*
adaptInfo
,
bool
force
)
{
FUNCNAME
(
"BaseProblem::writeFiles()"
);
prob
->
writeFiles
(
adaptInfo
,
force
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment