Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
34ef00c8
Commit
34ef00c8
authored
Jul 11, 2016
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated tests to vs 2015 and fix warning
parent
3aef25c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
.gitignore
tests/logs/.gitignore
+0
-2
tests.vcxproj
tests/tests.vcxproj
+2
-2
utils.cpp
tests/utils.cpp
+1
-1
No files found.
tests/logs/.gitignore
deleted
100644 → 0
View file @
3aef25c9
*.txt
*.log
tests/tests.vcxproj
View file @
34ef00c8
...
...
@@ -26,7 +26,7 @@
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v1
2
0
</PlatformToolset>
<PlatformToolset>
v1
4
0
</PlatformToolset>
<CharacterSet>
MultiByte
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
...
...
@@ -38,7 +38,7 @@
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v1
2
0
</PlatformToolset>
<PlatformToolset>
v1
4
0
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
MultiByte
</CharacterSet>
</PropertyGroup>
...
...
tests/utils.cpp
View file @
34ef00c8
...
...
@@ -41,5 +41,5 @@ std::size_t get_filesize(const std::string& filename)
if
(
!
ifs
)
throw
std
::
runtime_error
(
"Failed open file "
);
return
ifs
.
tellg
(
);
return
static_cast
<
std
::
size_t
>
(
ifs
.
tellg
()
);
}
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