From da97bd43b0b70ff64490a43ef7c75049beb13cce Mon Sep 17 00:00:00 2001 From: neargye Date: Thu, 18 Apr 2019 13:51:24 +0500 Subject: [PATCH] fix warning --- example/example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/example.cpp b/example/example.cpp index 0a3154e..0f0dbac 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -39,7 +39,7 @@ std::string operator"" _string(const char* str, std::size_t) { struct SomeStruct { int somefield = 0; - void SomeMethod1(const int i) { somefield = i; } + void SomeMethod1(int i) { somefield = i; } int SomeMethod2() const { return somefield; } };