Skip to content

Commit 29e2f88

Browse files
committed
make format
1 parent 7260e78 commit 29e2f88

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/common/functional_output.hpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class FunctionalOutput final
4545
/// this output, and adds a reference to it to in integs as a MachIntegrator
4646
/// \param[in] integrator - integrator to add to functional
4747
/// \param[in] bdr_attr_marker - lists element attributes this integrator
48-
/// should be used on
48+
/// should be used on
4949
/// \tparam T - type of integrator, used for constructing MachIntegrator
5050
template <typename T>
5151
void addOutputDomainIntegrator(T *integrator,
@@ -71,7 +71,7 @@ class FunctionalOutput final
7171
/// MachIntegrator
7272
/// \param[in] integrator - integrator to add to functional
7373
/// \param[in] bdr_attr_marker - lists boundary attributes this integrator
74-
/// should be used on
74+
/// should be used on
7575
/// \tparam T - type of integrator, used for constructing MachIntegrator
7676
template <typename T>
7777
void addOutputBdrFaceIntegrator(T *integrator,
@@ -117,8 +117,8 @@ void FunctionalOutput::addOutputDomainIntegrator(T *integrator)
117117

118118
template <typename T>
119119
void FunctionalOutput::addOutputDomainIntegrator(
120-
T *integrator,
121-
std::vector<int> bdr_attr_marker)
120+
T *integrator,
121+
std::vector<int> bdr_attr_marker)
122122
{
123123
integs.emplace_back(*integrator);
124124
auto &marker = domain_markers.emplace_back(bdr_attr_marker.size());
@@ -138,8 +138,7 @@ void FunctionalOutput::addOutputInteriorFaceIntegrator(T *integrator)
138138
}
139139

140140
template <typename T>
141-
void FunctionalOutput::addOutputBdrFaceIntegrator(
142-
T *integrator)
141+
void FunctionalOutput::addOutputBdrFaceIntegrator(T *integrator)
143142
{
144143
integs.emplace_back(*integrator);
145144
output.AddBdrFaceIntegrator(integrator);

0 commit comments

Comments
 (0)