| .. |
|
contrib
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
node
|
Fixed compiler error in iterator_base friend forward declaration in node on clang (and I hope MSVC), plus warnings on clang
|
2012-01-07 01:42:21 -06:00 |
|
old-api
|
Fixed broken includes when using the old api
|
2011-10-18 15:13:10 -05:00 |
|
collectionstack.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
directives.cpp
|
Merged r366:387 from the jbeder-event-api branch
|
2010-10-18 06:45:03 +00:00 |
|
directives.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
emitfromevents.cpp
|
Merged r444:449 from the node refactoring branch to the trunk
|
2011-03-03 00:19:26 +00:00 |
|
emitter.cpp
|
Added float/double precision setters
|
2012-01-11 14:34:04 -06:00 |
|
emitterstate.cpp
|
Fixed signed/unsigned mismatch with the new precision code
|
2012-01-11 16:50:06 -06:00 |
|
emitterstate.h
|
Fixed signed/unsigned mismatch with the new precision code
|
2012-01-11 16:50:06 -06:00 |
|
emitterutils.cpp
|
Added single character emitting
|
2011-11-14 16:23:14 -06:00 |
|
emitterutils.h
|
Added single character emitting
|
2011-11-14 16:23:14 -06:00 |
|
exp.cpp
|
Switched exception constants to const char * const (from const std::string) so we don't have to construct them all in every translation unit, and switched the exception class to derive from std::runtime_error (so it handles what() for us)
|
2011-03-02 04:12:57 +00:00 |
|
exp.h
|
Disallowed a plain scalar with just a dash
|
2012-01-11 16:39:24 -06:00 |
|
indentation.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
null.cpp
|
Fixed the #ifdefs for the api stuff
|
2011-10-18 14:47:35 -05:00 |
|
ostream.cpp
|
Moved all the includes to a subfolder yaml-cpp so they don't interfere with other libraries' includes
|
2010-10-18 07:05:53 +00:00 |
|
parser.cpp
|
Fixed the #ifdefs for the api stuff
|
2011-10-18 14:47:35 -05:00 |
|
ptr_stack.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
ptr_vector.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
regex.cpp
|
Removed crt stuff (we can do memory leak checking in Linux easier)
|
2009-10-27 14:55:01 +00:00 |
|
regex.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
regeximpl.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
scanner.cpp
|
Switched the scanner list of owned indent markers to a ptr_vector
|
2011-03-03 08:34:30 +00:00 |
|
scanner.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
scanscalar.cpp
|
Fixed folding bug (detecting indentation, example 8.2), and clipping/stripping empty strings (example 8.6)
|
2011-03-04 02:26:59 +00:00 |
|
scanscalar.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
scantag.cpp
|
Moved all the includes to a subfolder yaml-cpp so they don't interfere with other libraries' includes
|
2010-10-18 07:05:53 +00:00 |
|
scantag.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
scantoken.cpp
|
Added Anchor() regex (so that we're not just using Alphanumeric to match anchors), but it's still not 100% right (it shouldn't allow non-printable characters, e.g.). Also fixed a test that was broken along these lines (if a colon immediately follows an anchor, it's part of the anchor)
|
2011-01-31 17:47:20 +00:00 |
|
setting.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
simplekey.cpp
|
Moved all the includes to a subfolder yaml-cpp so they don't interfere with other libraries' includes
|
2010-10-18 07:05:53 +00:00 |
|
singledocparser.cpp
|
Merged r444:449 from the node refactoring branch to the trunk
|
2011-03-03 00:19:26 +00:00 |
|
singledocparser.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
stream.cpp
|
Switched the utf bom checking to putback in the stream (instead of keeping a secondary buffer), which fixes a bug when there's only one ascii character
|
2011-10-20 22:29:41 -05:00 |
|
stream.h
|
Switched the utf bom checking to putback in the stream (instead of keeping a secondary buffer), which fixes a bug when there's only one ascii character
|
2011-10-20 22:29:41 -05:00 |
|
streamcharsource.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
stringsource.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
tag.cpp
|
Small changes to eliminate compiler warnings for 'nite' in issue 83
|
2011-03-02 05:29:46 +00:00 |
|
tag.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |
|
token.h
|
Switched the 'pragma once' to only happen on MSVC, or gcc >= 3.4 (it was causing trouble on the sun compiler)
|
2011-09-06 00:16:03 -05:00 |