From 058ebe026eb9bd353d94542bfc57a84bd899965c Mon Sep 17 00:00:00 2001 From: rexy712 Date: Wed, 25 May 2022 12:30:35 -0700 Subject: [PATCH] Fix string hashing header includes --- include/rexy/hash.hpp | 4 ++-- include/rexy/string_view_hash.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/rexy/hash.hpp b/include/rexy/hash.hpp index 2b99bd7..52c5afd 100644 --- a/include/rexy/hash.hpp +++ b/include/rexy/hash.hpp @@ -40,14 +40,14 @@ namespace rexy{ } -#ifdef REXY_STRING_BASE_HPP +#ifdef REXY_STRING_VIEW_HPP #include "string_view_hash.hpp" #endif #ifdef REXY_STRING_HPP #include "basic_string_hash.hpp" #endif #ifdef REXY_CX_STRING_HPP -#include "cx_string_hash.hpp" +#include "cx/cx_string_hash.hpp" #endif #endif diff --git a/include/rexy/string_view_hash.hpp b/include/rexy/string_view_hash.hpp index 6d4945d..c84070b 100644 --- a/include/rexy/string_view_hash.hpp +++ b/include/rexy/string_view_hash.hpp @@ -20,7 +20,7 @@ #define REXY_STRING_VIEW_HASH_HPP #include "string_hash.hpp" -#include "string_base.hpp" +#include "string_view.hpp" #include "rexy.hpp" namespace rexy{