diff options
Diffstat (limited to 'src/result.hpp')
-rw-r--r-- | src/result.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/result.hpp b/src/result.hpp index 6bb8971..9103f46 100644 --- a/src/result.hpp +++ b/src/result.hpp @@ -15,12 +15,12 @@ * limitations under the License. */ -#ifndef GETSUYOMI_RESULT_HPP -#define GETSUYOMI_RESULT_HPP +#ifndef BOOKMOUSE_RESULT_HPP +#define BOOKMOUSE_RESULT_HPP #include <variant> -namespace getsuyomi { +namespace bookmouse { template<typename T, typename E> class Result { @@ -77,6 +77,6 @@ private: std::variant<T, E> m_value; }; -} // namespace getsuyomi +} // namespace bookmouse #endif |