Fixed error in include guard macros.

Header file started life as a copy of another header, but include
guard macro was not changed. Time to go for #pragma once?
This commit is contained in:
Atgeirr Flø Rasmussen 2013-05-27 22:26:52 +02:00
parent f26207d430
commit e3f39504f4

View File

@ -17,8 +17,8 @@
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef OPM_BLACKOILPROPSAD_HEADER_INCLUDED
#define OPM_BLACKOILPROPSAD_HEADER_INCLUDED
#ifndef OPM_BLACKOILPROPSADFROMDECK_HEADER_INCLUDED
#define OPM_BLACKOILPROPSADFROMDECK_HEADER_INCLUDED
#include <opm/autodiff/BlackoilPropsAdInterface.hpp>
#include <opm/autodiff/AutoDiffBlock.hpp>
@ -248,4 +248,4 @@ namespace Opm
} // namespace Opm
#endif // OPM_BLACKOILPROPSAD_HEADER_INCLUDED
#endif // OPM_BLACKOILPROPSADFROMDECK_HEADER_INCLUDED