Skip to content

Commit 8c9310d

Browse files
committed
Fixed bug pointed out in issue #42
Updated to c++17 for if constexpr
1 parent 6071cd6 commit 8c9310d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.8)
22
project(screen_capture_lite)
33

4-
set(CMAKE_CXX_STANDARD 14)
4+
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)
66
set(CMAKE_CXX_EXTENSIONS OFF)
77
option(BUILD_SHARED_LIBS "Build shared library" OFF)

include/ThreadManager.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ namespace Screen_Capture {
4242

4343
std::shared_ptr<ITimer> timer;
4444
// 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);
4747
}
4848
else {
49-
timer = std::atomic_load(&data->ScreenCaptureData.FrameTimer);
49+
timer = std::atomic_load(&data->ScreenCaptureData.MouseTimer);
5050
}
5151

5252
timer->start();

0 commit comments

Comments
 (0)