diff options
-rw-r--r-- | src/operation/math.h (renamed from src/operation.h) | 6 | ||||
-rw-r--r-- | test.cc | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/operation.h b/src/operation/math.h index 2f3b747..64a5cdb 100644 --- a/src/operation.h +++ b/src/operation/math.h @@ -1,5 +1,5 @@ -#ifndef TYPEASVALUE_SRC_OPERATION_H_ -#define TYPEASVALUE_SRC_OPERATION_H_ +#ifndef TYPEASVALUE_SRC_OPERATION_MATH_H_ +#define TYPEASVALUE_SRC_OPERATION_MATH_H_ #include "type.h" @@ -51,4 +51,4 @@ struct divide { } -#endif // TYPEASVALUE_SRC_OPERATION_H_ +#endif // TYPEASVALUE_SRC_OPERATION_MATH_H_ @@ -1,7 +1,7 @@ #include "gtest/gtest.h" #include "type.h" -#include "operation.h" +#include "operation/math.h" class TypeAsValueTest : public ::testing::Test { }; |