Skip to content

Instantly share code, notes, and snippets.

@j2doll
Last active November 22, 2024 08:53
Show Gist options
  • Save j2doll/95805f620bc7a132f0856a347589ed81 to your computer and use it in GitHub Desktop.
Save j2doll/95805f620bc7a132f0856a347589ed81 to your computer and use it in GitHub Desktop.
Qoo1
  • 전처리기(preprocessor)로 컴파일 시 오류를 발생시키는 방법을 소개합니다.
    • #error 전처리기를 사용하시면 됩니다.
#ifdef Qoo1

#error ***** ERROR ***** Qoo1 is defined ******

#endif
  • 컴파일(compile) 시 오류 발생을 통하여 런타임(runtime) 오류를 가능한한 미리 해소시키려는 용도로 사용됩니다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment