build: fix build on Unix systems
* throw std::exception replaced with throw error * MANAGER to Manager in CMakelists
This commit is contained in:
@@ -249,8 +249,8 @@ add_files(
|
||||
utility/interprocess/SharedParserArguments.cpp
|
||||
utility/interprocess/SharedParserArguments.h
|
||||
utility/interprocess/SharedQueue.h
|
||||
utility/interprocess/SharedUUIDMANAGER.cpp
|
||||
utility/interprocess/SharedUUIDMANAGER.h
|
||||
utility/interprocess/SharedUUIDManager.cpp
|
||||
utility/interprocess/SharedUUIDManager.h
|
||||
|
||||
utility/logging/ConsoleLogger.cpp
|
||||
utility/logging/ConsoleLogger.h
|
||||
|
||||
@@ -103,7 +103,7 @@ T SharedQueue<T>::popValue()
|
||||
}
|
||||
else
|
||||
{
|
||||
throw(std::exception("Deque was not initialized"));
|
||||
throw(std::runtime_error("Deque was not initialized"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user