mirror of
https://github.com/Fishwaldo/open-zwave.git
synced 2025-03-15 11:31:40 +00:00
fix compile warning and move license -> licenses directory
This commit is contained in:
parent
adc4e2475c
commit
e5f22ed4ae
6 changed files with 2 additions and 2 deletions
|
@ -993,7 +993,7 @@ struct ignore_assign {
|
|||
ignore_assign(int value) : _value(value) { }
|
||||
operator int() const { return _value; }
|
||||
|
||||
const ignore_assign& operator =(int dummy) { return *this; }
|
||||
const ignore_assign& operator =(int dummy) { (void)dummy; return *this; }
|
||||
|
||||
int _value;
|
||||
};
|
||||
|
|
|
@ -2,7 +2,7 @@ struct ignore_assign {
|
|||
ignore_assign(int value) : _value(value) { }
|
||||
operator int() const { return _value; }
|
||||
|
||||
const ignore_assign& operator =(int dummy) { return *this; }
|
||||
const ignore_assign& operator =(int dummy) { (void)dummy; return *this; }
|
||||
|
||||
int _value;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue