summaryrefslogtreecommitdiff
path: root/zen/process_priority.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
commit7302bb4484d517a72cdffbd13ec7a9f2324cde01 (patch)
tree17d2964c6768d49510206836a496fb1802a63e08 /zen/process_priority.h
parent8.5 (diff)
downloadFreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.gz
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.bz2
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.zip
8.6
Diffstat (limited to 'zen/process_priority.h')
-rw-r--r--zen/process_priority.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/zen/process_priority.h b/zen/process_priority.h
index ce2d0157..07679b0c 100644
--- a/zen/process_priority.h
+++ b/zen/process_priority.h
@@ -19,8 +19,8 @@ public:
PreventStandby(); //throw FileError
~PreventStandby();
private:
- struct Pimpl;
- std::unique_ptr<Pimpl> pimpl;
+ struct Impl;
+ const std::unique_ptr<Impl> pimpl;
};
//lower CPU and file I/O priorities
@@ -30,8 +30,8 @@ public:
ScheduleForBackgroundProcessing(); //throw FileError
~ScheduleForBackgroundProcessing();
private:
- struct Pimpl;
- std::unique_ptr<Pimpl> pimpl;
+ struct Impl;
+ const std::unique_ptr<Impl> pimpl;
};
}
bgstack15