doc: backslash typo in FAQ (#532)

This commit is contained in:
Sackhorn
2020-07-24 10:55:52 +02:00
committed by Michele Caini
parent 3a64707c6e
commit 1d9b26d9ec

View File

@@ -128,7 +128,7 @@ here is a workaround in the form of a macro:
```cpp
#if defined(_MSC_VER)
#define HS(str) __pragma(warning(suppress:4307)) entt::hashed_string{str}\
#define HS(str) __pragma(warning(suppress:4307)) entt::hashed_string{str}
#else
#define HS(str) entt::hashed_string{str}
#endif