libgccjit: silent 2 Clang warnings
The make silent the following 2 warnings: jit/jit-playback.h:785:16: warning: private field 'm_source_file' is not used [-Wunused-private-field] jit/jit-playback.h:804:16: warning: private field 'm_line' is not used [-Wunused-private-field] gcc/jit/ChangeLog: * jit-playback.h: Use unused attribute.
This commit is contained in:
parent
3102b57f31
commit
3e030227ea
1 changed files with 2 additions and 2 deletions
|
@ -782,7 +782,7 @@ public:
|
|||
vec<location *> m_locations;
|
||||
|
||||
private:
|
||||
source_file *m_source_file;
|
||||
source_file *m_source_file ATTRIBUTE_UNUSED;
|
||||
int m_line_num;
|
||||
};
|
||||
|
||||
|
@ -801,7 +801,7 @@ public:
|
|||
|
||||
private:
|
||||
recording::location *m_recording_loc;
|
||||
source_line *m_line;
|
||||
source_line *m_line ATTRIBUTE_UNUSED;
|
||||
int m_column_num;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue