Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yaml-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yaml-cpp
Commits
eb02dd8d
Commit
eb02dd8d
authored
Nov 08, 2012
by
Jesse Beder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typo from null fix
parent
5721ac61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
include/yaml-cpp/exceptions.h
+6
-6
No files found.
include/yaml-cpp/exceptions.h
View file @
eb02dd8d
...
@@ -152,7 +152,7 @@ namespace YAML
...
@@ -152,7 +152,7 @@ namespace YAML
class
BadConversion
:
public
RepresentationException
{
class
BadConversion
:
public
RepresentationException
{
public
:
public
:
BadConversion
()
BadConversion
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_CONVERSION
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_CONVERSION
)
{}
};
};
template
<
typename
T
>
template
<
typename
T
>
...
@@ -165,25 +165,25 @@ namespace YAML
...
@@ -165,25 +165,25 @@ namespace YAML
class
BadDereference
:
public
RepresentationException
{
class
BadDereference
:
public
RepresentationException
{
public
:
public
:
BadDereference
()
BadDereference
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_DEREFERENCE
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_DEREFERENCE
)
{}
};
};
class
BadSubscript
:
public
RepresentationException
{
class
BadSubscript
:
public
RepresentationException
{
public
:
public
:
BadSubscript
()
BadSubscript
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_SUBSCRIPT
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_SUBSCRIPT
)
{}
};
};
class
BadPushback
:
public
RepresentationException
{
class
BadPushback
:
public
RepresentationException
{
public
:
public
:
BadPushback
()
BadPushback
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_PUSHBACK
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_PUSHBACK
)
{}
};
};
class
BadInsert
:
public
RepresentationException
{
class
BadInsert
:
public
RepresentationException
{
public
:
public
:
BadInsert
()
BadInsert
()
:
RepresentationException
(
Mark
::
null
(),
ErrorMsg
::
BAD_INSERT
)
{}
:
RepresentationException
(
Mark
::
null
_mark
(),
ErrorMsg
::
BAD_INSERT
)
{}
};
};
class
EmitterException
:
public
Exception
{
class
EmitterException
:
public
Exception
{
...
@@ -194,7 +194,7 @@ namespace YAML
...
@@ -194,7 +194,7 @@ namespace YAML
class
BadFile
:
public
Exception
{
class
BadFile
:
public
Exception
{
public
:
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