diff options
author | Wastack <btomi96@gmail.com> | 2016-03-11 01:07:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-11 08:59:30 +0000 |
commit | ce549d2a09ad9884a7e598162cf0ca6b6bc3150c (patch) | |
tree | 6f6033b12e959862c0a4bdb75e1505b6e4d449b5 /tools/source | |
parent | 9a13cff64783a7de3dce7d484c150605bd42a4d6 (diff) |
tdf#97966: Remove 'static' keywords
Change-Id: Iced527f48afa828cc9acf5b6461674a2706cbcd7
Reviewed-on: https://gerrit.libreoffice.org/23135
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/misc/cpuid.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/misc/cpuid.cxx b/tools/source/misc/cpuid.cxx index 9cdc4995dbce..5bef56c0fe9c 100644 --- a/tools/source/misc/cpuid.cxx +++ b/tools/source/misc/cpuid.cxx @@ -22,13 +22,13 @@ namespace { #if defined(_MSC_VER) #include <intrin.h> -static void getCpuId(uint32_t array[4]) +void getCpuId(uint32_t array[4]) { __cpuid((int*)array, 1); } #else #include <cpuid.h> -static void getCpuId(uint32_t array[4]) +void getCpuId(uint32_t array[4]) { __get_cpuid(1, array + 0, array + 1, array + 2, array + 3); } |