diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-01-26 21:12:40 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-01-26 21:12:40 +0100 |
commit | 51c28a2dbb1506cbd73c97cdb1e2ddb7fba017b1 (patch) | |
tree | a3ac8a5afce33a4c958c194e5915bfb266500259 | |
parent | fd0a3225be09990e8d2e0e7f441440de9879f7eb (diff) | |
download | biboumi-51c28a2dbb1506cbd73c97cdb1e2ddb7fba017b1.tar.gz biboumi-51c28a2dbb1506cbd73c97cdb1e2ddb7fba017b1.tar.bz2 biboumi-51c28a2dbb1506cbd73c97cdb1e2ddb7fba017b1.tar.xz biboumi-51c28a2dbb1506cbd73c97cdb1e2ddb7fba017b1.zip |
Fix the include guard of revstr.hpp
-rw-r--r-- | src/utils/revstr.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/revstr.hpp b/src/utils/revstr.hpp index 0f00076..27c9e3e 100644 --- a/src/utils/revstr.hpp +++ b/src/utils/revstr.hpp @@ -1,5 +1,5 @@ -#ifndef REVSTRP_INCLUDED -# define REVSTR_INCLUDED +#ifndef REVSTR_HPP_INCLUDED +# define REVSTR_HPP_INCLUDED #include <string> @@ -8,4 +8,4 @@ namespace utils std::string revstr(const std::string& original); } -#endif // REVSTR_INCLUDED +#endif // REVSTR_HPP_INCLUDED |