Skip to content

Commit

Permalink
Merge pull request #13395 from andrsd/pragma-fix
Browse files Browse the repository at this point in the history
Fixing #pragma once
  • Loading branch information
permcody committed May 9, 2019
2 parents 709163a + e09af29 commit e2375fd
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ class SinglePhaseFluidProperties : public FluidProperties
virtual Real e_from_p_T(Real p, Real T) const; virtual Real e_from_p_T(Real p, Real T) const;
DualReal e_from_p_T(const DualReal & p, const DualReal & T) const; DualReal e_from_p_T(const DualReal & p, const DualReal & T) const;
virtual Real e(Real pressure, Real temperature) const; virtual Real e(Real pressure, Real temperature) const;
DualReal e_from_p_T(const DualReal & p, const DualReal & T) const;


/** /**
* Internal energy and its derivatives from pressure and temperature * Internal energy and its derivatives from pressure and temperature
Expand Down
5 changes: 1 addition & 4 deletions unit/include/PorousFlowWaterVaporTest.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
//* Licensed under LGPL 2.1, please see LICENSE for details //* Licensed under LGPL 2.1, please see LICENSE for details
//* https://www.gnu.org/licenses/lgpl-2.1.html //* https://www.gnu.org/licenses/lgpl-2.1.html


#ifndef POROUSFLOWWATERVAPORTEST_H #pragma once
#define POROUSFLOWWATERVAPORTEST_H


#include "MooseObjectUnitTest.h" #include "MooseObjectUnitTest.h"
#include "PorousFlowCapillaryPressureVG.h" #include "PorousFlowCapillaryPressureVG.h"
Expand Down Expand Up @@ -45,5 +44,3 @@ class PorousFlowWaterVaporTest : public MooseObjectUnitTest
const PorousFlowWaterVapor * _fp; const PorousFlowWaterVapor * _fp;
const Water97FluidProperties * _water_fp; const Water97FluidProperties * _water_fp;
}; };

#endif // POROUSFLOWWATERVAPORTEST_H
5 changes: 0 additions & 5 deletions unit/src/DelimitedFileReaderTest.C
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
//* Licensed under LGPL 2.1, please see LICENSE for details //* Licensed under LGPL 2.1, please see LICENSE for details
//* https://www.gnu.org/licenses/lgpl-2.1.html //* https://www.gnu.org/licenses/lgpl-2.1.html


#ifndef DELIMITEDFILEREADERTEST_H
#define DELIMITEDFILEREADERTEST_H

#include "gtest/gtest.h" #include "gtest/gtest.h"


// MOOSE includes // MOOSE includes
Expand Down Expand Up @@ -421,5 +418,3 @@ TEST(DelimitedFileReader, Empty)
reader.read(); reader.read();
EXPECT_EQ(reader.getData(), std::vector<std::vector<double>>()); EXPECT_EQ(reader.getData(), std::vector<std::vector<double>>());
} }

#endif

0 comments on commit e2375fd

Please sign in to comment.