fix warning
This commit is contained in:
parent
e48ca6469d
commit
da97bd43b0
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ std::string operator"" _string(const char* str, std::size_t) {
|
||||||
struct SomeStruct {
|
struct SomeStruct {
|
||||||
int somefield = 0;
|
int somefield = 0;
|
||||||
|
|
||||||
void SomeMethod1(const int i) { somefield = i; }
|
void SomeMethod1(int i) { somefield = i; }
|
||||||
|
|
||||||
int SomeMethod2() const { return somefield; }
|
int SomeMethod2() const { return somefield; }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue