Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LEFEBVREJP email
radix
Commits
fd777839
Commit
fd777839
authored
May 12, 2020
by
Norby, Tom
Browse files
Use _snprintf for VS versions < 2015 continued.
parent
e1829e56
Pipeline
#101403
failed with stages
in 91 minutes and 33 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
radixio/arldatastream.cc
View file @
fd777839
...
...
@@ -6,6 +6,13 @@
#include "radixmath/util.hh"
#include <fstream>
#ifdef _WIN32
#if _MSC_VER < 1900
#define snprintf _snprintf
#endif
#endif
namespace
radix
{
class
ARLDataStream
::
PImpl
...
...
radixio/hysplitcdump.i.hh
View file @
fd777839
...
...
@@ -4,6 +4,13 @@
#include "radixbug/bug.hh"
#include "radixio/eafstream.hh"
#include "radixio/hysplitcdump.hh"
#ifdef _WIN32
#if _MSC_VER < 1900
#define snprintf _snprintf
#endif
#endif
namespace
radix
{
template
<
typename
data_type
>
...
...
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