Skip to content

Commit

Permalink
Remove redundant include (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Mar 3, 2017
1 parent 789ebea commit cc736e7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <stdexcept>
#include <string>
#include <vector>
#include <utility>
#include <utility> // for std::pair

// The fmt library version in the form major * 10000 + minor * 100 + patch.
#define FMT_VERSION 30002
Expand Down Expand Up @@ -155,10 +155,6 @@ typedef __int64 intmax_t;
# endif
#endif

#if FMT_USE_RVALUE_REFERENCES
# include <utility> // for std::move
#endif

// Check if exceptions are disabled.
#if defined(__GNUC__) && !defined(__EXCEPTIONS)
# define FMT_EXCEPTIONS 0
Expand Down

0 comments on commit cc736e7

Please sign in to comment.