Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 18, 2024
1 parent c49523b commit c492666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/KDFoundation/platform/linux/linux_platform_timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ LinuxPlatformTimer::LinuxPlatformTimer(Timer *timer)
disarm();
}
});
m_timerIntervalConnection = timer->interval.valueChanged().connect([this, timer]() {
m_timerIntervalConnection = timer->interval.valueChanged().connect([this, timer]() {
if (timer->running.get()) {
arm(timer->interval.get());
}
Expand Down
2 changes: 1 addition & 1 deletion src/KDUtils/file_mapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using WriteMap = mio::basic_mmap<mio::access_mode::write, uint8_t>;
struct FileMapper::Map {
std::variant<ReadMap, WriteMap> map;

~Map(){};
~Map() {};

Map(bool writeable)
{
Expand Down

0 comments on commit c492666

Please sign in to comment.