From 5d1c7a77e6153227701fc906d3611b15e5b390ee Mon Sep 17 00:00:00 2001 From: Choe Hwanjin Date: Sun, 4 Apr 2021 11:24:51 +0900 Subject: Remove compiler warnings with -Wpedantic (#44) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pedantic 옵션을 추가했을 때 발생하는 워닝을 제거한다. 다른 워닝이 발생하는 곳도 같이 수정한다. https://github.com/libhangul/libhangul/issues/44 --- hangul/hangul.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hangul/hangul.h') diff --git a/hangul/hangul.h b/hangul/hangul.h index dcafcd4..36156db 100644 --- a/hangul/hangul.h +++ b/hangul/hangul.h @@ -23,7 +23,7 @@ #include #ifdef __GNUC__ -#define LIBHANGUL_DEPRECATED __attribute__((deprecated)); +#define LIBHANGUL_DEPRECATED __attribute__((deprecated)) #else #define LIBHANGUL_DEPRECATED #endif -- cgit v1.2.1