Skip to content
Snippets Groups Projects
  1. Mar 06, 2018
  2. Feb 02, 2018
  3. Jan 28, 2018
  4. Nov 29, 2017
  5. Nov 14, 2017
  6. Nov 10, 2017
    • Matthew Woehlke's avatar
      Fix NullEventHandler overloads · 5a519a4c
      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.
      5a519a4c
    • Matthew Woehlke's avatar
      Add explicit virtual dtor · 58687ee7
      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.
      58687ee7
    • Matthew Woehlke's avatar
      Avoid absolute install destinations · dc9c750e
      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.
      dc9c750e
    • Matthew Woehlke's avatar
      Fix Windows library install location · d96826f1
      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.)
      d96826f1
  7. Nov 08, 2017
  8. Aug 25, 2017
  9. Jul 25, 2017
  10. Jul 24, 2017
  11. Apr 03, 2017
  12. Mar 07, 2017
  13. Mar 02, 2017
  14. Feb 01, 2017
  15. Jan 05, 2017
    • Jens Breitbart's avatar
      Fixed compiler warning -Wdeprecated with clang. (#452) · 86c69bb7
      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
      86c69bb7
  16. Jan 02, 2017
    • butataatawa's avatar
      Fix sequence sometimes not turning into a map (#450) · f8286100
      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)
      f8286100
  17. Dec 13, 2016
  18. Dec 06, 2016
  19. Dec 03, 2016
  20. Dec 02, 2016
  21. Nov 22, 2016
  22. Nov 11, 2016
  23. Oct 12, 2016
  24. Oct 02, 2016
  25. Aug 18, 2016
Loading