Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
yaml-cpp
Commits
eb02dd8d
Commit
eb02dd8d
authored
Nov 08, 2012
by
Jesse Beder
Browse files
Fixed typo from null fix
parent
5721ac61
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
include/yaml-cpp/exceptions.h
include/yaml-cpp/exceptions.h
+6
-6
No files found.
include/yaml-cpp/exceptions.h
View file @
eb02dd8d
...
...
@@ -152,7 +152,7 @@ namespace YAML
class
BadConversion
:
public
RepresentationException
{
public:
BadConversion
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_CONVERSION
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_CONVERSION
)
{}
};
template
<
typename
T
>
...
...
@@ -165,25 +165,25 @@ namespace YAML
class
BadDereference
:
public
RepresentationException
{
public:
BadDereference
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_DEREFERENCE
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_DEREFERENCE
)
{}
};
class
BadSubscript
:
public
RepresentationException
{
public:
BadSubscript
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_SUBSCRIPT
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_SUBSCRIPT
)
{}
};
class
BadPushback
:
public
RepresentationException
{
public:
BadPushback
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_PUSHBACK
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_PUSHBACK
)
{}
};
class
BadInsert
:
public
RepresentationException
{
public:
BadInsert
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_INSERT
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_INSERT
)
{}
};
class
EmitterException
:
public
Exception
{
...
...
@@ -194,7 +194,7 @@ namespace YAML
class
BadFile
:
public
Exception
{
public:
BadFile
()
:
Exception
(
Mark
::
null
(),
ErrorMsg
::
BAD_FILE
)
{}
BadFile
()
:
Exception
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_FILE
)
{}
};
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment