Skip to content
Snippets Groups Projects
Commit 09a5f385 authored by MichelJuillard's avatar MichelJuillard
Browse files

make some fields public to fix

parent 63173c82
No related branches found
No related tags found
No related merge requests found
......@@ -199,10 +199,11 @@ public:
class AlreadyDeclaredException : public std::exception
{
public:
//! Was the previous declaration done with the same symbol type ?
const bool same_type;
//! Symbol name
const string name;
//! Was the previous declaration done with the same symbol type ?
const bool same_type;
AlreadyDeclaredException(string name_arg, bool same_type_arg) : name(name_arg),
same_type(same_type_arg)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment