Formatting

This commit is contained in:
Klaus Basan
2018-03-19 20:26:06 +01:00
parent 28b270a4cf
commit 011f31ad2b
7 changed files with 30 additions and 23 deletions

View File

@@ -139,7 +139,7 @@ namespace BlackCore
int m_periodicTime = -1; //!< Periodic time after which the task is repeated
QDateTime m_updateTimestamp; //!< when file/resource was read
uint m_contentHash = 0; //!< has of the content given
std::atomic<bool> m_markedAsFailed { false }; //!< marker if reading failed
std::atomic_bool m_markedAsFailed { false }; //!< marker if reading failed
bool m_unitTest { false }; //!< mark as unit test
BlackMisc::Network::CUrlLogList m_urlReadLog; //!< URL based reading can be logged
};