diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-09 16:27:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-22 12:47:37 +0200 |
commit | 76dd28afc9c0eb632a5dd20eb51704ee0bbc4b58 (patch) | |
tree | 82c51d09721476a1a6fcbf1e4cd4af8189ac55a2 /tools/source/stream | |
parent | 78490b45c771a4c9632b324922f2c8e83f06153b (diff) |
loplugin:staticvar in various
looks for variables that can be declared const and static i.e. they can
be stored in the read-only linker segment and shared between different
processes
Change-Id: I8ddc6e5fa0f6b10d80c75d5952df8ddd311cf892
Reviewed-on: https://gerrit.libreoffice.org/61591
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools/source/stream')
-rw-r--r-- | tools/source/stream/strmunx.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx index 057ac61f121f..77c30850a1ba 100644 --- a/tools/source/stream/strmunx.cxx +++ b/tools/source/stream/strmunx.cxx @@ -179,7 +179,7 @@ public: static ErrCode GetSvError( int nErrno ) { - static struct { int nErr; ErrCode sv; } errArr[] = + static struct { int nErr; ErrCode sv; } const errArr[] = { { 0, ERRCODE_NONE }, { EACCES, SVSTREAM_ACCESS_DENIED }, @@ -231,7 +231,7 @@ static ErrCode GetSvError( int nErrno ) static ErrCode GetSvError( oslFileError nErrno ) { - static struct { oslFileError nErr; ErrCode sv; } errArr[] = + static struct { oslFileError nErr; ErrCode sv; } const errArr[] = { { osl_File_E_None, ERRCODE_NONE }, { osl_File_E_ACCES, SVSTREAM_ACCESS_DENIED }, |