diff options
author | Daniel Wilhelm <shieldwed@outlook.com> | 2018-05-09 00:04:33 +0200 |
---|---|---|
committer | Daniel Wilhelm <shieldwed@outlook.com> | 2018-05-09 00:04:33 +0200 |
commit | 017e56b81ba735c39c43701f737ac7dde55da7b4 (patch) | |
tree | ea7aaaee13a06a702701e2f74f5d390e10ae303e /zen/process_priority.h | |
parent | 9.4 (diff) | |
download | FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.gz FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.tar.bz2 FreeFileSync-017e56b81ba735c39c43701f737ac7dde55da7b4.zip |
9.5
Diffstat (limited to 'zen/process_priority.h')
-rwxr-xr-x | zen/process_priority.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zen/process_priority.h b/zen/process_priority.h index 07679b0c..ac96a8ae 100755 --- a/zen/process_priority.h +++ b/zen/process_priority.h @@ -3,13 +3,13 @@ // * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 * // * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved * // ***************************************************************************** + #ifndef PROCESS_PRIORITY_H_83421759082143245 #define PROCESS_PRIORITY_H_83421759082143245 #include <memory> #include "file_error.h" - namespace zen { //signal a "busy" state to the operating system @@ -20,7 +20,7 @@ public: ~PreventStandby(); private: struct Impl; - const std::unique_ptr<Impl> pimpl; + const std::unique_ptr<Impl> pimpl_; }; //lower CPU and file I/O priorities @@ -31,7 +31,7 @@ public: ~ScheduleForBackgroundProcessing(); private: struct Impl; - const std::unique_ptr<Impl> pimpl; + const std::unique_ptr<Impl> pimpl_; }; } |