diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-09-23 00:33:33 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-09-23 00:33:33 -0500 |
commit | 500e1f9892dd41419663e9f72cf47bab5b2aca0b (patch) | |
tree | a0709693d5317a6b89cdda7ac3143886b93552f4 /src/result.hpp | |
parent | fa4b4097d3283e1d6e6376c70910e245f0b1f6ec (diff) |
Saving work.
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 |