diff options
Diffstat (limited to 'vcl/opengl/win/WinDeviceInfo.cxx')
-rw-r--r-- | vcl/opengl/win/WinDeviceInfo.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/opengl/win/WinDeviceInfo.cxx b/vcl/opengl/win/WinDeviceInfo.cxx index 383cce8d6b98..cb9f1d2943e6 100644 --- a/vcl/opengl/win/WinDeviceInfo.cxx +++ b/vcl/opengl/win/WinDeviceInfo.cxx @@ -36,9 +36,8 @@ namespace { * Beware of the implicit trailing '\0' when using this with string constants. */ template<typename T, size_t N> -size_t ArrayLength(T (&aArr)[N]) +size_t ArrayLength(T (&)[N]) { - (void) aArr; return N; } |