1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00

Remove atomic members from static modules

This commit is contained in:
patrick96 2021-09-30 15:27:39 +02:00 committed by Patrick Ziegler
parent 6b6bcf5080
commit 4f8f076714
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ namespace modules {
vector<unique_ptr<menu_tree>> m_levels; vector<unique_ptr<menu_tree>> m_levels;
std::atomic<int> m_level{-1}; int m_level{-1};
}; };
} // namespace modules } // namespace modules

View file

@ -57,7 +57,7 @@ namespace modules {
progressbar_t m_progressbar; progressbar_t m_progressbar;
bool m_scroll{true}; bool m_scroll{true};
std::atomic<int> m_percentage{0}; int m_percentage{0};
}; };
} // namespace modules } // namespace modules