Skip to content

Commit

Permalink
[DXFC-402] Implement adding multiple symbols and removing symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatolyKalin committed May 25, 2023
1 parent f0d06fc commit cef9b89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct Error {
//TODO: implement retrieving, grouping methods
class ErrorHandlingManager {
static constexpr std::size_t DEFAULT_ERROR_COLLECTION_CAPACITY{1024ULL};
thread_local static inline const Error NO_ERROR{Error::UNKNOWN_ID, 0, "", "NO ERROR"};
static inline const Error NO_ERROR{Error::UNKNOWN_ID, 0, "", "NO ERROR"};

std::mutex errorCollectionMutex_{};
std::unordered_map<std::size_t, Error> errorCollection_{};
Expand Down

0 comments on commit cef9b89

Please sign in to comment.