Remove unnecessary "fmt/" prefix which should be maintained with additional include_directories() in each project. (#397)

This commit is contained in:
chronoxor
2016-10-11 16:45:04 +03:00
committed by Victor Zverovich
parent 4809e2956a
commit 1500f00525
8 changed files with 9 additions and 9 deletions

View File

@ -25,8 +25,8 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "fmt/format.h" #include "format.h"
#include "fmt/printf.h" #include "printf.h"
#include <string.h> #include <string.h>

View File

@ -7,7 +7,7 @@
For the license information refer to format.h. For the license information refer to format.h.
*/ */
#include "fmt/ostream.h" #include "ostream.h"
namespace fmt { namespace fmt {

View File

@ -10,7 +10,7 @@
#ifndef FMT_OSTREAM_H_ #ifndef FMT_OSTREAM_H_
#define FMT_OSTREAM_H_ #define FMT_OSTREAM_H_
#include "fmt/format.h" #include "format.h"
#include <ostream> #include <ostream>
namespace fmt { namespace fmt {

View File

@ -12,7 +12,7 @@
# define _CRT_SECURE_NO_WARNINGS # define _CRT_SECURE_NO_WARNINGS
#endif #endif
#include "fmt/posix.h" #include "posix.h"
#include <limits.h> #include <limits.h>
#include <sys/types.h> #include <sys/types.h>

View File

@ -27,7 +27,7 @@
# include <xlocale.h> // for LC_NUMERIC_MASK on OS X # include <xlocale.h> // for LC_NUMERIC_MASK on OS X
#endif #endif
#include "fmt/format.h" #include "format.h"
#ifndef FMT_POSIX #ifndef FMT_POSIX
# if defined(_WIN32) && !defined(__MINGW32__) # if defined(_WIN32) && !defined(__MINGW32__)

View File

@ -13,7 +13,7 @@
#include <algorithm> // std::fill_n #include <algorithm> // std::fill_n
#include <limits> // std::numeric_limits #include <limits> // std::numeric_limits
#include "fmt/ostream.h" #include "ostream.h"
namespace fmt { namespace fmt {
namespace internal { namespace internal {

View File

@ -10,7 +10,7 @@
#ifndef FMT_STRING_H_ #ifndef FMT_STRING_H_
#define FMT_STRING_H_ #define FMT_STRING_H_
#include "fmt/format.h" #include "format.h"
namespace fmt { namespace fmt {

View File

@ -10,7 +10,7 @@
#ifndef FMT_TIME_H_ #ifndef FMT_TIME_H_
#define FMT_TIME_H_ #define FMT_TIME_H_
#include "fmt/format.h" #include "format.h"
#include <ctime> #include <ctime>
namespace fmt { namespace fmt {