From d771a3de35ef8134362587fa6608d49d08508c8e Mon Sep 17 00:00:00 2001 From: BlackMATov Date: Mon, 14 Feb 2022 06:55:59 +0700 Subject: [PATCH] value.hpp -> uvalue.hpp --- headers/meta.hpp/meta_all.hpp | 6 +++--- headers/meta.hpp/meta_detail/value_traits/deref_traits.hpp | 2 +- headers/meta.hpp/meta_detail/value_traits/equals_traits.hpp | 2 +- headers/meta.hpp/meta_detail/value_traits/index_traits.hpp | 2 +- .../meta.hpp/meta_detail/value_traits/istream_traits.hpp | 2 +- headers/meta.hpp/meta_detail/value_traits/less_traits.hpp | 2 +- .../meta.hpp/meta_detail/value_traits/ostream_traits.hpp | 2 +- headers/meta.hpp/meta_detail/value_utilities/uarg.hpp | 2 +- headers/meta.hpp/meta_detail/value_utilities/uinst.hpp | 2 +- headers/meta.hpp/meta_detail/value_utilities/utraits.hpp | 2 +- headers/meta.hpp/meta_states.hpp | 2 +- headers/meta.hpp/{meta_value.hpp => meta_uvalue.hpp} | 0 .../{meta_value/vinvoke.hpp => meta_uvalue/invoke.hpp} | 2 +- .../{meta_value/value.hpp => meta_uvalue/uvalue.hpp} | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) rename headers/meta.hpp/{meta_value.hpp => meta_uvalue.hpp} (100%) rename headers/meta.hpp/{meta_value/vinvoke.hpp => meta_uvalue/invoke.hpp} (99%) rename headers/meta.hpp/{meta_value/value.hpp => meta_uvalue/uvalue.hpp} (99%) diff --git a/headers/meta.hpp/meta_all.hpp b/headers/meta.hpp/meta_all.hpp index 67bf982..a4aeaa8 100644 --- a/headers/meta.hpp/meta_all.hpp +++ b/headers/meta.hpp/meta_all.hpp @@ -61,9 +61,9 @@ #include "meta_types/reference_type.hpp" #include "meta_types/void_type.hpp" -#include "meta_value.hpp" -#include "meta_value/value.hpp" -#include "meta_value/vinvoke.hpp" +#include "meta_uvalue.hpp" +#include "meta_uvalue/invoke.hpp" +#include "meta_uvalue/uvalue.hpp" namespace meta_hpp { diff --git a/headers/meta.hpp/meta_detail/value_traits/deref_traits.hpp b/headers/meta.hpp/meta_detail/value_traits/deref_traits.hpp index d5d7059..05781a5 100644 --- a/headers/meta.hpp/meta_detail/value_traits/deref_traits.hpp +++ b/headers/meta.hpp/meta_detail/value_traits/deref_traits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_detail/value_traits/equals_traits.hpp b/headers/meta.hpp/meta_detail/value_traits/equals_traits.hpp index 977781c..76f4701 100644 --- a/headers/meta.hpp/meta_detail/value_traits/equals_traits.hpp +++ b/headers/meta.hpp/meta_detail/value_traits/equals_traits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_detail/value_traits/index_traits.hpp b/headers/meta.hpp/meta_detail/value_traits/index_traits.hpp index 7f55f5e..fc7894b 100644 --- a/headers/meta.hpp/meta_detail/value_traits/index_traits.hpp +++ b/headers/meta.hpp/meta_detail/value_traits/index_traits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_detail/value_traits/istream_traits.hpp b/headers/meta.hpp/meta_detail/value_traits/istream_traits.hpp index 06fc7fb..6d8bfd9 100644 --- a/headers/meta.hpp/meta_detail/value_traits/istream_traits.hpp +++ b/headers/meta.hpp/meta_detail/value_traits/istream_traits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_detail/value_traits/less_traits.hpp b/headers/meta.hpp/meta_detail/value_traits/less_traits.hpp index 2901052..e3a2d63 100644 --- a/headers/meta.hpp/meta_detail/value_traits/less_traits.hpp +++ b/headers/meta.hpp/meta_detail/value_traits/less_traits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_detail/value_traits/ostream_traits.hpp b/headers/meta.hpp/meta_detail/value_traits/ostream_traits.hpp index 9068b40..3a21532 100644 --- a/headers/meta.hpp/meta_detail/value_traits/ostream_traits.hpp +++ b/headers/meta.hpp/meta_detail/value_traits/ostream_traits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_detail/value_utilities/uarg.hpp b/headers/meta.hpp/meta_detail/value_utilities/uarg.hpp index 458d735..d248dea 100644 --- a/headers/meta.hpp/meta_detail/value_utilities/uarg.hpp +++ b/headers/meta.hpp/meta_detail/value_utilities/uarg.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" #include "utraits.hpp" diff --git a/headers/meta.hpp/meta_detail/value_utilities/uinst.hpp b/headers/meta.hpp/meta_detail/value_utilities/uinst.hpp index 76c8f3f..b2c30a7 100644 --- a/headers/meta.hpp/meta_detail/value_utilities/uinst.hpp +++ b/headers/meta.hpp/meta_detail/value_utilities/uinst.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" #include "utraits.hpp" diff --git a/headers/meta.hpp/meta_detail/value_utilities/utraits.hpp b/headers/meta.hpp/meta_detail/value_utilities/utraits.hpp index 75a275d..41e77b4 100644 --- a/headers/meta.hpp/meta_detail/value_utilities/utraits.hpp +++ b/headers/meta.hpp/meta_detail/value_utilities/utraits.hpp @@ -7,7 +7,7 @@ #pragma once #include "../../meta_base.hpp" -#include "../../meta_value.hpp" +#include "../../meta_uvalue.hpp" namespace meta_hpp::detail { diff --git a/headers/meta.hpp/meta_states.hpp b/headers/meta.hpp/meta_states.hpp index 8926119..bf34ac0 100644 --- a/headers/meta.hpp/meta_states.hpp +++ b/headers/meta.hpp/meta_states.hpp @@ -9,7 +9,7 @@ #include "meta_base.hpp" #include "meta_indices.hpp" #include "meta_types.hpp" -#include "meta_value.hpp" +#include "meta_uvalue.hpp" #include "meta_detail/state_family.hpp" diff --git a/headers/meta.hpp/meta_value.hpp b/headers/meta.hpp/meta_uvalue.hpp similarity index 100% rename from headers/meta.hpp/meta_value.hpp rename to headers/meta.hpp/meta_uvalue.hpp diff --git a/headers/meta.hpp/meta_value/vinvoke.hpp b/headers/meta.hpp/meta_uvalue/invoke.hpp similarity index 99% rename from headers/meta.hpp/meta_value/vinvoke.hpp rename to headers/meta.hpp/meta_uvalue/invoke.hpp index 4173cf2..3dfae6b 100644 --- a/headers/meta.hpp/meta_value/vinvoke.hpp +++ b/headers/meta.hpp/meta_uvalue/invoke.hpp @@ -8,7 +8,7 @@ #include "../meta_base.hpp" #include "../meta_states.hpp" -#include "../meta_value.hpp" +#include "../meta_uvalue.hpp" #include "../meta_detail/value_utilities/uarg.hpp" #include "../meta_detail/value_utilities/uinst.hpp" diff --git a/headers/meta.hpp/meta_value/value.hpp b/headers/meta.hpp/meta_uvalue/uvalue.hpp similarity index 99% rename from headers/meta.hpp/meta_value/value.hpp rename to headers/meta.hpp/meta_uvalue/uvalue.hpp index 089df83..8b14a85 100644 --- a/headers/meta.hpp/meta_value/value.hpp +++ b/headers/meta.hpp/meta_uvalue/uvalue.hpp @@ -7,7 +7,7 @@ #pragma once #include "../meta_base.hpp" -#include "../meta_value.hpp" +#include "../meta_uvalue.hpp" #include "../meta_detail/value_traits/deref_traits.hpp" #include "../meta_detail/value_traits/equals_traits.hpp"