Skip to content

Commit c401486

Browse files
committed
Now?
1 parent 8ab6cdc commit c401486

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
22
project(LeetCode)
33

44
# GoogleTest requires at least C++14
5-
set(CMAKE_CXX_STANDARD 14)
5+
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)
77
# Avoid warning about DOWNLOAD_EXTRACT_TIMESTAMP in CMake 3.24:
88
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")

wiggle-sort-ii/tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
#include <gtest/gtest.h>
2-
31
#include <algorithm>
42
#include <utility>
53
#include <vector>
64

75
#include "print_vector.hpp"
86

7+
#include <gtest/gtest.h>
8+
99
#include "solution.hpp"
1010

1111
typedef std::vector<int> ll;

0 commit comments

Comments
 (0)