mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 03:27:02 -07:00
Fixed bugs and issues with linking tests
This commit is contained in:
parent
65be8090d3
commit
d4b1ea90c6
11 changed files with 27 additions and 21 deletions
|
|
@ -5,12 +5,12 @@
|
|||
namespace gdpm{
|
||||
class error{
|
||||
public:
|
||||
error(int code, const std::string& message):
|
||||
error(int code = 0, const std::string& message = ""):
|
||||
m_code(code), m_message(message)
|
||||
{}
|
||||
|
||||
private:
|
||||
int m_code;
|
||||
std::string m_message;
|
||||
}
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue