1. 28 Apr, 2015 1 commit
  2. 26 Apr, 2015 1 commit
  3. 15 Apr, 2015 1 commit
  4. 13 Apr, 2015 1 commit
  5. 08 Apr, 2015 1 commit
  6. 07 Apr, 2015 6 commits
  7. 03 Apr, 2015 5 commits
  8. 02 Apr, 2015 4 commits
  9. 26 Mar, 2015 3 commits
  10. 25 Mar, 2015 1 commit
  11. 25 Feb, 2015 2 commits
  12. 17 Feb, 2015 2 commits
  13. 08 Feb, 2015 2 commits
  14. 30 Nov, 2014 3 commits
  15. 11 Nov, 2014 2 commits
    • Andriy Senkovych's avatar
      Fix broken references in documentation · 5cceb9e3
      Andriy Senkovych authored
      5cceb9e3
    • Andriy Senkovych's avatar
      Add initial CMake support · 8ae1c971
      Andriy Senkovych authored
       * Support for both in-source and out-of-source builds
       * Set library version to 0.12 to map Debian package
       * Add separate options to build tests, examples and documentation
       * Add pkgconfig lookup support (if installed with `make install`)
       * Add CMake lookup support (if isntalled with `make install`)
       * Add Google Test Source lookup
       * Add CTest support for running tests (use `make test` or `ctest -V`)
      8ae1c971
  16. 28 Oct, 2014 2 commits
  17. 24 Oct, 2014 2 commits
    • Philipp A. Hartmann's avatar
      GenericValue: improve operator[] disambiguation · e8445e0b
      Philipp A. Hartmann authored
      In the original disambiguation fix for `GenericValue::operator[]` (#170),
      the documentation has been missing, which led to quite badly rendered
      Doxygen pages.
      
      During a cleanup, I've realized that a much simpler disambiguation is
      possible:
      
      ````cpp
        GenericValue& operator[](SizeType idx); // array
        template <typename T>
        GenericValue& operator[](T* name);      // object
      ````
      
      This approach works, as non-template functions are preferred over
      template functions.
      
      In order to improve the error messages, the pointer type is restricted
      to `(const) Ch`.
      
      Update `tutorial.md` to drop the ambiguity warning.
      e8445e0b
    • Zhihao Yuan's avatar
  18. 26 Sep, 2014 1 commit