- Mar 06, 2018
-
-
Jesse Beder authored
It was incorrectly left at 0.6.0 when 0.6.1 was released, so this needs to be done to make it consistent between the tagged version and the CMake version.
-
- Feb 02, 2018
-
-
Jamie Snape authored
pkg-config should be giving absolute paths rather than relative paths.
-
- Jan 28, 2018
-
-
Jesse Beder authored
-
Guillaume Dumont authored
-
Denis Gladkikh authored
-
- Nov 29, 2017
-
-
Cybel authored
* Change None in C/C++ source to NoneType. Prevent name conflict with X11 None definition.
-
- Nov 14, 2017
-
-
Matthew Woehlke authored
Don't build tests if the confusingly named YAML_CPP_BUILD_TOOLS is ON. Instead, add a new option that controls only if the tests are built. (Also, default tests to OFF.)
-
Ryan Schmidt authored
-
- Nov 10, 2017
-
-
Matthew Woehlke authored
Fix some virtual methods of NullEventHandler that were apparently intended to overload base class methods, but did not. Add override keyword to prevent these getting out of sync again.
-
Matthew Woehlke authored
Add explicit virtual dtor to GraphBuilderInterface. This avoids tripping a -Wnon-virtual-dtor warning, and also ensures that the correct (virtual) dtor is called if an instance is deleted via a pointer to the base type.
-
Matthew Woehlke authored
Remove use of CMAKE_INSTALL_PREFIX when specifying install destinations. It is preferred that install destinations are specified as relative paths, not absolute paths. This is also needed to create relocatable installs, and thus should fix #526.
-
Matthew Woehlke authored
Don't install LIBRARIES on Windows to `bin`; they belong in `lib`. (This appears to have been done in a mistaken attempt to install the DLL's to `bin`, which do need to be there, but RUNTIME DESTINATION already takes care of this.)
-
- Nov 08, 2017
-
-
Alain Vaucher authored
-
- Aug 25, 2017
-
-
Roger Leigh authored
The combination of clang++ 3.4 with libstdc++ from GCC 4.6 doesn't work.
-
Roger Leigh authored
Note that with the release of 1.8.0, googlemock and googletest are unified into a single release.
-
- Jul 25, 2017
-
-
Petr Bena authored
This way it's possible to build using older MSVC (<13) that don't support this yet. Macro is undefined in each file where it is used so it should stack well with other libs and sources.
-
- Jul 24, 2017
-
-
Peter-Levine authored
Taken from https://github.com/google/googletest/issues/705#issuecomment-235067917
-
- Apr 03, 2017
-
-
Dan Ibanez authored
* fix two compile warnings in public headers both warnings have to do with variable name shadowing
-
- Mar 07, 2017
-
-
devnoname120 authored
-
- Mar 02, 2017
-
-
Andrew authored
-
- Feb 01, 2017
-
-
Liosan authored
-
- Jan 05, 2017
-
-
Jens Breitbart authored
* Fixed compiler warning -Wdeprecated with clang. Starting with C++11 implicit copy-constructors are deprecated when the class has a user defined destructor. * Fixes -Wdocumentation warning. yaml-cpp/parser.h:50:65: warning: parameter 'eventHandler}.' not found in the function declaration [-Wdocumentation] * Handles the next document by calling events on the {@param eventHandler}. ^~~~~~~~~~~~~~ yaml-cpp/parser.h:50:65: note: did you mean 'eventHandler'? * Handles the next document by calling events on the {@param eventHandler}. ^~~~~~~~~~~~~~ eventHandler
-
- Jan 02, 2017
-
-
butataatawa authored
Previously, just referencing the next element in the sequence (and so constructing it, as an undefined element) would allow you to skip defining an element without turning the sequence into a map. E.g: node[0] = "foo"; // sequence of size 1 node[1]; // sequence of size 1, with an undefined element at 1 node[2] = "bar"; // FIX: should be map of size 2 (since there's no element at index 1)
-
- Dec 13, 2016
-
-
Raul Tambre authored
-
- Dec 06, 2016
-
-
butataatawa authored
-
- Dec 03, 2016
-
-
Jens Breitbart authored
-
Raul Tambre authored
-
Jens Breitbart authored
-
Jens Breitbart authored
-
- Dec 02, 2016
-
-
butataatawa authored
-
Ovidiu-Florin BOGDAN authored
-
- Nov 22, 2016
-
-
Jesse Beder authored
-
- Nov 11, 2016
-
-
michaelkonecny authored
Add hint for 64-bit solution in the cmake's generator argument.
-
Victor Mataré authored
Returning a const value prevents the use of non-copyable return types such as unique_ptr.
-
James E. King, III authored
Fix compiler flags for MSVC_STATIC_RT=OFF builds
-
- Oct 12, 2016
-
-
Jesse Beder authored
-
Jesse Beder authored
-
- Oct 02, 2016
-
-
Jamie Snape authored
CMake policy CMP0042 changes the default value of the MACOSX_RPATH target property to TRUE, therefore setting the directory portion of the install_name field of a shared library to be @rpath on OS X.
-
- Aug 18, 2016
-
-
Joseph Langley authored
-