Skip to content

Commit

Permalink
remove no-longer necessary(?) warning suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
braxtons12 committed Feb 13, 2024
1 parent d1f3911 commit 0645c3c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions include/hyperion/mpl/type.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ namespace hyperion::mpl {
/// @brief The type that this `Type` is a metaprogramming wrapper for
using type = TType;

#if HYPERION_PLATFORM_COMPILER_IS_CLANG
_Pragma("GCC diagnostic push");
_Pragma("GCC diagnostic ignored \"-Wdeprecated-volatile\"");
#endif // HYPERION_PLATFORM_COMPILER_IS_CLANG

/// @brief Returns another instance of this `specialization` of `Type`
/// @return another instance of this `Type` specialization
template<typename TDelay = type>
Expand Down Expand Up @@ -121,10 +116,6 @@ namespace hyperion::mpl {
return {};
}

#if HYPERION_PLATFORM_COMPILER_IS_CLANG
_Pragma("GCC diagnostic pop");
#endif // HYPERION_PLATFORM_COMPILER_IS_CLANG

/// @brief Returns whether the `type` of this `Type` is also a metaprogramming type
/// (i.e. a `MetaValue`), in which case you may call `this->inner()` to obtain that an
/// instance of that type.
Expand Down

0 comments on commit 0645c3c

Please sign in to comment.