Skip to content

Commit

Permalink
fixup! stricter __cpp_constexpr check
Browse files Browse the repository at this point in the history
  • Loading branch information
refack committed Oct 31, 2018
1 parent a5e87ab commit a874629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ v8::Local<v8::String> OneByteString(v8::Isolate* isolate,

// Used to be a macro, hence the uppercase name.
template <int N>
#if __cpp_constexpr < 201304
#if __cpp_constexpr < 201603
inline v8::Local<v8::String> FIXED_ONE_BYTE_STRING(
#else
constexpr v8::Local<v8::String> FIXED_ONE_BYTE_STRING(
Expand Down

0 comments on commit a874629

Please sign in to comment.