Skip to content

Commit

Permalink
Remove unnecessary fmt/ prefix (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jan 20, 2018
1 parent 9649919 commit f853d94
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions include/fmt/format.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
//
// For the license information refer to format.h.

#include "fmt/format.h"
#include "fmt/locale.h"
#include "format.h"
#include "locale.h"

#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <stdexcept>
#include <stdint.h>

#include "fmt/core.h"
#include "core.h"

#ifdef _SECURE_SCL
# define FMT_SECURE_SCL _SECURE_SCL
Expand Down
2 changes: 1 addition & 1 deletion include/fmt/locale.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//
// For the license information refer to format.h.

#include "fmt/format.h"
#include "format.h"
#include <locale>

namespace fmt {
Expand Down
2 changes: 1 addition & 1 deletion include/fmt/ostream.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef FMT_OSTREAM_H_
#define FMT_OSTREAM_H_

#include "fmt/format.h"
#include "format.h"
#include <ostream>

namespace fmt {
Expand Down
2 changes: 1 addition & 1 deletion include/fmt/posix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# define _CRT_SECURE_NO_WARNINGS
#endif

#include "fmt/posix.h"
#include "posix.h"

#include <limits.h>
#include <sys/types.h>
Expand Down
2 changes: 1 addition & 1 deletion include/fmt/posix.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# include <xlocale.h> // for LC_NUMERIC_MASK on OS X
#endif

#include "fmt/format.h"
#include "format.h"

#ifndef FMT_POSIX
# if defined(_WIN32) && !defined(__MINGW32__)
Expand Down
2 changes: 1 addition & 1 deletion include/fmt/printf.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <algorithm> // std::fill_n
#include <limits> // std::numeric_limits

#include "fmt/ostream.h"
#include "ostream.h"

namespace fmt {
namespace internal {
Expand Down
2 changes: 1 addition & 1 deletion include/fmt/time.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef FMT_TIME_H_
#define FMT_TIME_H_

#include "fmt/format.h"
#include "format.h"
#include <ctime>

namespace fmt {
Expand Down

0 comments on commit f853d94

Please sign in to comment.