1. 25 Dec, 2017 4 commits
  2. 23 Dec, 2017 4 commits
  3. 22 Dec, 2017 1 commit
  4. 21 Dec, 2017 1 commit
  5. 20 Dec, 2017 7 commits
  6. 19 Dec, 2017 7 commits
  7. 18 Dec, 2017 4 commits
    • Davis King's avatar
      updated docs · a5121e57
      Davis King authored
      a5121e57
    • David Hirvonen's avatar
      add chrono::duration_cast<>() cast for clang error (#1019) · 4149ade9
      David Hirvonen authored
      * fix chrono cast for llvm
      
      https://stackoverflow.com/a/18284105
      
      tested: clang-3.9, clang-5.0
      
      ```
      /Source/dlib/dir_nav/dir_nav_kernel_2.h:397:31: error: no viable overloaded '+='
                      last_modified += std::chrono::nanoseconds(buffer.st_atim.tv_nsec);
                      ~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      /usr/include/c++/v1/chrono:782:43: note: candidate function not viable: no known conversion from 'duration<[...], ratio<[...], 1000000000>>' to 'const duration<[...], ratio<[...], 1000000>>' for 1st argument
          _LIBCPP_INLINE_VISIBILITY time_point& operator+=(const duration& __d) {__d_ += __d; return *this;}
                                                ^
      Source/dlib/dir_nav/dir_nav_kernel_2.cpp:69:33: error: no viable overloaded '+='
                  state.last_modified += std::chrono::nanoseconds(buffer.st_atim.tv_nsec);
                  ~~~~~~~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      /usr/include/c++/v1/chrono:782:43: note: candidate function not viable: no known conversion from 'duration<[...], ratio<[...], 1000000000>>' to 'const duration<[...], ratio<[...], 1000000>>' for 1st argument
          _LIBCPP_INLINE_VISIBILITY time_point& operator+=(const duration& __d) {__d_ += __d; return *this;}
      ```
      
      * fix typo
      4149ade9
    • Davis King's avatar
      Changed this example to use repeat layers. This doesn't change the behavior of · 603ebc27
      Davis King authored
      the code, but it helps visual studio use less RAM when building the example,
      and might make appveyor not crash.  It's also a
      slightly cleaner way to write the code anyway.
      603ebc27
    • Davis King's avatar
      83a4af46
  8. 17 Dec, 2017 11 commits
  9. 16 Dec, 2017 1 commit