Kaydet (Commit) 985d259e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Silence clang-cl warnings in gperf-generated code

Change-Id: Id30e7afb3024d94cacf392bcd72c952d5a2ba5c4
üst bc2fe224
...@@ -128,7 +128,15 @@ enum parseKey { ...@@ -128,7 +128,15 @@ enum parseKey {
NONE NONE
}; };
#if defined _MSC_VER && defined __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-register"
#pragma clang diagnostic ignored "-Wextra-tokens"
#endif
#include "hash.cxx" #include "hash.cxx"
#if defined _MSC_VER && defined __clang__
#pragma clang diagnostic pop
#endif
class Parser class Parser
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment