Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/AllProjects/CIDKernel/CIDKernel_BaseInlines.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ namespace tCIDLib
template <typename T> struct IsRefBase : FalseType{};
template <typename T> struct IsRefBase<T&> : TrueType{};
template <typename T> struct IsRef : IsRefBase<typename RemoveConst<T>::Type> {};
template <typename T> constexpr tCIDLib::TBoolean bIsRef = IsRef<T>:bState;
template <typename T> constexpr tCIDLib::TBoolean bIsRef = IsRef<T>::bState;


// This is a hack for the 'else' clause of if constexpr sequences, so we can static assert
Expand Down