File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.8)
2
2
project (screen_capture_lite)
3
3
4
- set (CMAKE_CXX_STANDARD 14 )
4
+ set (CMAKE_CXX_STANDARD 17 )
5
5
set (CMAKE_CXX_STANDARD_REQUIRED ON )
6
6
set (CMAKE_CXX_EXTENSIONS OFF )
7
7
option (BUILD_SHARED_LIBS "Build shared library" OFF )
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ namespace Screen_Capture {
42
42
43
43
std::shared_ptr<ITimer> timer;
44
44
// i want to use if const expr here but apple is slow to update their compiler so I have to use this
45
- if (sizeof ...(args) == 1 ) {
46
- timer = std::atomic_load (&data->WindowCaptureData .FrameTimer );
45
+ if constexpr (sizeof ...(args) == 1 ) {
46
+ timer = std::atomic_load (&data->WindowCaptureData .MouseTimer );
47
47
}
48
48
else {
49
- timer = std::atomic_load (&data->ScreenCaptureData .FrameTimer );
49
+ timer = std::atomic_load (&data->ScreenCaptureData .MouseTimer );
50
50
}
51
51
52
52
timer->start ();
You can’t perform that action at this time.
0 commit comments