mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 19:01:48 +08:00
24 lines
539 B
Diff
24 lines
539 B
Diff
diff --git a/src/eastasianwidthdef.h b/src/eastasianwidthdef.h
|
|
index 67a41aa..c081a02 100644
|
|
--- a/src/eastasianwidthdef.h
|
|
+++ b/src/eastasianwidthdef.h
|
|
@@ -26,6 +26,9 @@
|
|
|
|
#include "unibreakdef.h"
|
|
|
|
+#ifdef __cplusplus
|
|
+extern "C" {
|
|
+#endif
|
|
/**
|
|
* East Asian Width (ea) class. This is defined in Unicode Standard
|
|
* Annex 11.
|
|
@@ -52,5 +55,8 @@ struct EastAsianWidthProperties
|
|
};
|
|
|
|
enum EastAsianWidthClass ub_get_char_eaw_class(utf32_t ch);
|
|
+#ifdef __cplusplus
|
|
+}
|
|
+#endif
|
|
|
|
#endif /* EASTASIANWIDTHDEF_H */
|