Skip to content

Commit b24219b

Browse files
committed
always inline should not be used here.
1 parent 132a2e3 commit b24219b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/rapidjson/encodings.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,10 +695,10 @@ template<bool CodePointValidation = true>
695695
class ValidatableEncoder {
696696
public:
697697
template<typename TEncoding, typename OutputStream>
698-
static RAPIDJSON_FORCEINLINE bool Encode(OutputStream &os, unsigned codepoint);
698+
static bool Encode(OutputStream &os, unsigned codepoint);
699699

700700
template<typename TEncoding, typename OutputStream>
701-
static RAPIDJSON_FORCEINLINE bool EncodeUnsafe(OutputStream &os, unsigned codepoint);
701+
static bool EncodeUnsafe(OutputStream &os, unsigned codepoint);
702702
};
703703

704704
// By default, reader will validate code point and generate parse error.

0 commit comments

Comments
 (0)