diff options
author | 2017-09-19 14:06:39 +0000 | |
---|---|---|
committer | 2017-09-19 14:06:39 +0000 | |
commit | f71878b87b50de7d80de05ef30bf85a892f999db (patch) | |
tree | 89006ae3addcf6488e69ac667663391fe8a279eb | |
parent | b107a3155bc1209118ed84c591f13d01e53e4e09 (diff) | |
parent | 5873918849e5c10adab778f95d1254da746b10b1 (diff) |
Merge "Fix unused parameter warning"
-rw-r--r-- | opengl/tests/configdump/configdump.cpp | 3 | ||||
-rw-r--r-- | opengl/tests/gl2_basic/gl2_basic.cpp | 2 | ||||
-rw-r--r-- | opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp | 2 | ||||
-rw-r--r-- | opengl/tests/gl_yuvtex/gl_yuvtex.cpp | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/opengl/tests/configdump/configdump.cpp b/opengl/tests/configdump/configdump.cpp index 2a945982a9..c423105a11 100644 --- a/opengl/tests/configdump/configdump.cpp +++ b/opengl/tests/configdump/configdump.cpp @@ -66,8 +66,7 @@ Attribute attributes[] = { }; // clang-format on -int main(int argc, char** argv) -{ +int main(int /*argc*/, char** /*argv*/) { EGLConfig* configs; EGLint n; diff --git a/opengl/tests/gl2_basic/gl2_basic.cpp b/opengl/tests/gl2_basic/gl2_basic.cpp index adcda0ca4b..ee88667328 100644 --- a/opengl/tests/gl2_basic/gl2_basic.cpp +++ b/opengl/tests/gl2_basic/gl2_basic.cpp @@ -265,7 +265,7 @@ int printEGLConfigurations(EGLDisplay dpy) { return true; } -int main(int argc, char** argv) { +int main(int /*argc*/, char** /*argv*/) { EGLBoolean returnValue; EGLConfig myConfig = {0}; diff --git a/opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp b/opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp index 98d8aa8cbc..22128ab5ea 100644 --- a/opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp +++ b/opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp @@ -331,7 +331,7 @@ void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { printf("\n"); } -int main(int argc, char** argv) { +int main(int /*argc*/, char** /*argv*/) { EGLBoolean returnValue; EGLConfig myConfig = {0}; diff --git a/opengl/tests/gl_yuvtex/gl_yuvtex.cpp b/opengl/tests/gl_yuvtex/gl_yuvtex.cpp index c923b07362..fad26a69c7 100644 --- a/opengl/tests/gl_yuvtex/gl_yuvtex.cpp +++ b/opengl/tests/gl_yuvtex/gl_yuvtex.cpp @@ -221,7 +221,7 @@ void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { printf("\n"); } -int main(int argc, char** argv) { +int main(int /*argc*/, char** /*argv*/) { EGLBoolean returnValue; EGLConfig myConfig = {0}; |