We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c057d08 commit 0eb5a84Copy full SHA for 0eb5a84
src/mecab/src/string_buffer.h
@@ -84,7 +84,7 @@ class StringBuffer {
84
StringBuffer& operator<<(long int n) { _ITOA(n); }
85
StringBuffer& operator<<(unsigned short int n) { _UITOA(n); }
86
StringBuffer& operator<<(unsigned int n) { _UITOA(n); }
87
-#ifdef _M_X64 /* for only 64bit compiler of vs2010 */
+#if defined(_M_X64) || defined(_M_ARM64) /* for only 64bit compiler of vs2010 */
88
StringBuffer& operator<<(size_t n) { _UITOA(n); }
89
#endif
90
StringBuffer& operator<<(unsigned long int n) { _UITOA(n); }
0 commit comments