Fix string hashing header includes

This commit is contained in:
rexy712 2022-05-25 12:30:35 -07:00
parent 99b0ac2ed3
commit 058ebe026e
2 changed files with 3 additions and 3 deletions

View File

@ -40,14 +40,14 @@ namespace rexy{
} }
#ifdef REXY_STRING_BASE_HPP #ifdef REXY_STRING_VIEW_HPP
#include "string_view_hash.hpp" #include "string_view_hash.hpp"
#endif #endif
#ifdef REXY_STRING_HPP #ifdef REXY_STRING_HPP
#include "basic_string_hash.hpp" #include "basic_string_hash.hpp"
#endif #endif
#ifdef REXY_CX_STRING_HPP #ifdef REXY_CX_STRING_HPP
#include "cx_string_hash.hpp" #include "cx/cx_string_hash.hpp"
#endif #endif
#endif #endif

View File

@ -20,7 +20,7 @@
#define REXY_STRING_VIEW_HASH_HPP #define REXY_STRING_VIEW_HASH_HPP
#include "string_hash.hpp" #include "string_hash.hpp"
#include "string_base.hpp" #include "string_view.hpp"
#include "rexy.hpp" #include "rexy.hpp"
namespace rexy{ namespace rexy{