Skip to content

Commit 7a3acea

Browse files
committed
Edited comment, marked test template constexpr.
1 parent 888c684 commit 7a3acea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

XMapLib/MouseMapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ namespace sds
134134
}
135135
protected:
136136
/// <summary>
137-
/// Worker thread, private visibility, gets updated data from ProcessState() function to use.
137+
/// Worker thread, protected visibility, gets updated data from ProcessState() function to use.
138138
/// Accesses the std::atomic m_thread_x and m_thread_y members.
139139
/// </summary>
140140
void workThread(sds::LambdaArgs::LambdaArg1& stopCondition, sds::LambdaArgs::LambdaArg2&, int&)

XMapLibTest/TemplatesForTest.h

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

88
namespace XMapLibTest::TemplatesForTest
99
{
10-
bool IsWithin(const auto result, const auto testVal, const auto within)
10+
constexpr bool IsWithin(const auto result, const auto testVal, const auto within)
1111
{
1212
return ((result > (testVal - within)) && (result < (testVal + within)));
1313
}

0 commit comments

Comments
 (0)