Updated GLI version used in GLM tests

This commit is contained in:
Christophe Riccio
2016-11-18 23:16:29 +01:00
parent 3440139d3a
commit 7e4007d427
134 changed files with 12089 additions and 4656 deletions

15
test/external/gli/core/file.hpp vendored Normal file
View File

@@ -0,0 +1,15 @@
/// @brief File helper functions
/// @file gli/core/file.hpp
#pragma once
#include <cstdio>
namespace gli{
namespace detail
{
FILE* open_file(const char *Filename, const char *mode);
}//namespace detail
}//namespace gli
#include "./file.inl"