Fix embarrassing build errors

This commit is contained in:
Alex Hultman
2020-09-29 11:27:29 +02:00
committed by GitHub
parent 583c6455b9
commit 2558003106
+2 -2
View File
@@ -25,7 +25,7 @@
namespace uWS {
/* Takes raw query including initial '?' sign. Will inplace decode, so input will mutate */
std::string_view getDecodedQueryValue(std::string_view key, std::string_view rawQuery) {
static inline std::string_view getDecodedQueryValue(std::string_view key, std::string_view rawQuery) {
/* Can't have a value without a key */
if (!key.length()) {
@@ -117,4 +117,4 @@ namespace uWS {
}
#endif
#endif