Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary "fmt/" prefix inside fmt directory #397

Merged
merged 2 commits into from
Oct 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fmt/format.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

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

#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion fmt/ostream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
For the license information refer to format.h.
*/

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

namespace fmt {

Expand Down
2 changes: 1 addition & 1 deletion fmt/ostream.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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 fmt/posix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,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 fmt/posix.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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 fmt/printf.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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 fmt/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef FMT_STRING_H_
#define FMT_STRING_H_

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

namespace fmt {

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

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

namespace fmt {
Expand Down