소스 검색

fixed compilation (c++11)

Robert Pelnar 6 년 전
부모
커밋
3e29312b41
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Firmware/language.h

+ 1 - 1
Firmware/language.h

@@ -35,7 +35,7 @@
 #define _T(s) s
 #else //(LANG_MODE == 0)
 #define _I(s) (__extension__({static const char __c[] PROGMEM_I1 = "\xff\xff"s; &__c[0];}))
-#define ISTR(s) "\xff\xff"s
+#define ISTR(s) "\xff\xff" s
 #define _i(s) lang_get_translation(_I(s))
 #define _T(s) lang_get_translation(s)
 #endif //(LANG_MODE == 0)