Chromium Code Reviews| Index: xfa/include/fwl/core/fwl_note.h |
| diff --git a/xfa/include/fwl/core/fwl_note.h b/xfa/include/fwl/core/fwl_note.h |
| index 341d5bda7aad01daa8379a7c6f5c335a4be4d4e1..f06dd20e39a4c3ab59caa0c6c3b815e1f03aad9f 100644 |
| --- a/xfa/include/fwl/core/fwl_note.h |
| +++ b/xfa/include/fwl/core/fwl_note.h |
| @@ -186,7 +186,7 @@ class CFWL_Message : public CFWL_Note { |
| virtual FX_DWORD GetClassID() const { return msghashcode; } |
| #define END_FWL_MESSAGE_DEF \ |
| } \ |
| - ; |
| + ; // NOLINT |
|
Tom Sepez
2016/02/23 17:44:19
what's the issue with these?
dsinclair
2016/02/23 19:14:01
Semicolon isn't allowed on a line by itself. git c
|
| BEGIN_FWL_MESSAGE_DEF(CFWL_MsgActivate, FWL_MSGHASH_Activate) |
| END_FWL_MESSAGE_DEF |
| BEGIN_FWL_MESSAGE_DEF(CFWL_MsgDeactivate, FWL_MSGHASH_Deactivate) |
| @@ -261,7 +261,7 @@ class CFWL_Event : public CFWL_Note { |
| virtual FX_DWORD GetClassID() const { return eventhashcode; } |
| #define END_FWL_EVENT_DEF \ |
| } \ |
| - ; |
| + ; // NOLINT |
| BEGIN_FWL_EVENT_DEF(CFWL_EvtMouse, FWL_EVTHASH_Mouse) |
| FX_FLOAT m_fx; |
| FX_FLOAT m_fy; |