Procházet zdrojové kódy

doc: backslash typo in FAQ (#532)

Sackhorn před 5 roky
rodič
revize
1d9b26d9ec
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      docs/md/faq.md

+ 1 - 1
docs/md/faq.md

@@ -128,7 +128,7 @@ here is a workaround in the form of a macro:
 
 
 ```cpp
 ```cpp
 #if defined(_MSC_VER)
 #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
 #else
 #define HS(str) entt::hashed_string{str}
 #define HS(str) entt::hashed_string{str}
 #endif
 #endif