Skip to content

Commit 32d348a

Browse files
committed
Includes of gtest with < > instead of " ".
Found by Cppcheck (missingInclude).
1 parent 7d06d41 commit 32d348a

11 files changed

+11
-11
lines changed

test/bit_utils_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "internal/bit_utils.h"
1616

17-
#include "gtest/gtest.h"
17+
#include <gtest/gtest.h>
1818

1919
namespace cpu_features {
2020
namespace {

test/cpuinfo_aarch64_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <set>
1818

1919
#include "filesystem_for_testing.h"
20-
#include "gtest/gtest.h"
20+
#include <gtest/gtest.h>
2121
#include "hwcaps_for_testing.h"
2222
#if defined(CPU_FEATURES_OS_WINDOWS)
2323
#include "internal/windows_utils.h"

test/cpuinfo_arm_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "cpuinfo_arm.h"
1616

1717
#include "filesystem_for_testing.h"
18-
#include "gtest/gtest.h"
18+
#include <gtest/gtest.h>
1919
#include "hwcaps_for_testing.h"
2020

2121
namespace cpu_features {

test/cpuinfo_loongarch_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "cpuinfo_loongarch.h"
1616

1717
#include "filesystem_for_testing.h"
18-
#include "gtest/gtest.h"
18+
#include <gtest/gtest.h>
1919
#include "hwcaps_for_testing.h"
2020

2121
namespace cpu_features {

test/cpuinfo_mips_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "cpuinfo_mips.h"
1616

1717
#include "filesystem_for_testing.h"
18-
#include "gtest/gtest.h"
18+
#include <gtest/gtest.h>
1919
#include "hwcaps_for_testing.h"
2020
#include "internal/stack_line_reader.h"
2121
#include "internal/string_view.h"

test/cpuinfo_ppc_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "cpuinfo_ppc.h"
1616

1717
#include "filesystem_for_testing.h"
18-
#include "gtest/gtest.h"
18+
#include <gtest/gtest.h>
1919
#include "hwcaps_for_testing.h"
2020
#include "internal/string_view.h"
2121

test/cpuinfo_riscv_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "cpuinfo_riscv.h"
1616

1717
#include "filesystem_for_testing.h"
18-
#include "gtest/gtest.h"
18+
#include <gtest/gtest.h>
1919
#include "hwcaps_for_testing.h"
2020

2121
namespace cpu_features {

test/cpuinfo_s390x_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "cpuinfo_s390x.h"
1616
#include "filesystem_for_testing.h"
17-
#include "gtest/gtest.h"
17+
#include <gtest/gtest.h>
1818
#include "hwcaps_for_testing.h"
1919

2020
namespace cpu_features {

test/cpuinfo_x86_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#endif // CPU_FEATURES_OS_WINDOWS
2424

2525
#include "filesystem_for_testing.h"
26-
#include "gtest/gtest.h"
26+
#include <gtest/gtest.h>
2727
#include "internal/cpuid_x86.h"
2828

2929
namespace cpu_features {

test/stack_line_reader_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "internal/stack_line_reader.h"
1616

1717
#include "filesystem_for_testing.h"
18-
#include "gtest/gtest.h"
18+
#include <gtest/gtest.h>
1919

2020
namespace cpu_features {
2121

test/string_view_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "internal/string_view.h"
1616

17-
#include "gtest/gtest.h"
17+
#include <gtest/gtest.h>
1818

1919
namespace cpu_features {
2020

0 commit comments

Comments
 (0)