Skip to content

Commit af00aa4

Browse files
committed
Removed messy preprocessor directives
1 parent 9424c3c commit af00aa4

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tests/testRenderer.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
#include <iostream>
2+
#include <tuple>
23

34
#include "gtest/gtest.h"
45

56
#include "Renderer.h"
67

78
using std::make_pair;
89

9-
// fix for travis
10-
#if (!__GNUC__) || ((__GNUC__ == 4 && __GNUC_MINOR__ >= 8) || (__GNUC__ >= 5))
1110
using std::tuple;
1211
using std::get;
13-
#else
14-
using ::testing::tuple;
15-
using ::testing::get;
16-
#endif
1712

1813
class CoordinateConversionTest : public ::testing::TestWithParam<tuple<int, int>> {
1914

0 commit comments

Comments
 (0)