Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
fee52f79
Commit
fee52f79
authored
Jan 30, 2016
by
Mario Werner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update the includes in the tests to get rid of the deprecated warnings
parent
62ac1d98
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
test/assert-test.cc
test/assert-test.cc
+1
-1
test/format-test.cc
test/format-test.cc
+1
-1
test/gtest-extra.h
test/gtest-extra.h
+2
-2
test/header-only-test.cc
test/header-only-test.cc
+1
-1
test/header-only-test2.cc
test/header-only-test2.cc
+1
-1
test/posix-test.cc
test/posix-test.cc
+1
-1
test/printf-test.cc
test/printf-test.cc
+1
-1
test/util-test.cc
test/util-test.cc
+1
-1
test/util.h
test/util.h
+1
-1
No files found.
test/assert-test.cc
View file @
fee52f79
...
...
@@ -25,7 +25,7 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include
"format.h"
#include
<cppformat/format.h>
#include "gtest/gtest.h"
#if GTEST_HAS_DEATH_TEST
...
...
test/format-test.cc
View file @
fee52f79
...
...
@@ -45,7 +45,7 @@
// Test that the library compiles if None is defined to 0 as done by xlib.h.
#define None 0
#include
"format.h"
#include
<cppformat/format.h>
#include "util.h"
#include "mock-allocator.h"
#include "gtest-extra.h"
...
...
test/gtest-extra.h
View file @
fee52f79
...
...
@@ -31,14 +31,14 @@
#include <string>
#include <gtest/gtest.h>
#include
"format.h"
#include
<cppformat/format.h>
#ifndef FMT_USE_FILE_DESCRIPTORS
# define FMT_USE_FILE_DESCRIPTORS 0
#endif
#if FMT_USE_FILE_DESCRIPTORS
# include
"posix.h"
# include
<cppformat/posix.h>
#endif
#define FMT_TEST_THROW_(statement, expected_exception, expected_message, fail) \
...
...
test/header-only-test.cc
View file @
fee52f79
...
...
@@ -25,4 +25,4 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include
"format.h"
#include
<cppformat/format.h>
test/header-only-test2.cc
View file @
fee52f79
...
...
@@ -25,4 +25,4 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include
"format.h"
#include
<cppformat/format.h>
test/posix-test.cc
View file @
fee52f79
...
...
@@ -29,7 +29,7 @@
#include <cstring>
#include "gtest-extra.h"
#include
"posix.h"
#include
<cppformat/posix.h>
#include "util.h"
#ifdef fileno
...
...
test/printf-test.cc
View file @
fee52f79
...
...
@@ -29,7 +29,7 @@
#include <climits>
#include <cstring>
#include
"format.h"
#include
<cppformat/format.h>
#include "gtest-extra.h"
#include "util.h"
...
...
test/util-test.cc
View file @
fee52f79
...
...
@@ -47,7 +47,7 @@
# include <windows.h>
#endif
#include
"format.h"
#include
<cppformat/format.h>
#undef max
...
...
test/util.h
View file @
fee52f79
...
...
@@ -29,7 +29,7 @@
#include <cstdio>
#include <string>
#include
"posix.h"
#include
<cppformat/posix.h>
enum
{
BUFFER_SIZE
=
256
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment