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
0fea89ec
Commit
0fea89ec
authored
Dec 03, 2014
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #81 from Queueless/master
Fixed Level 4 warnings on Windows
parents
7706e105
838dc1e1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
8 deletions
+26
-8
format.cc
format.cc
+8
-0
format.h
format.h
+18
-8
No files found.
format.cc
View file @
0fea89ec
...
...
@@ -84,6 +84,7 @@ using fmt::internal::Arg;
#if _MSC_VER
# pragma warning(push)
# pragma warning(disable: 4127) // conditional expression is constant
# pragma warning(disable: 4702) // unreachable code
#endif
namespace
{
...
...
@@ -239,6 +240,8 @@ void check_sign(const Char *&s, const Arg &arg) {
// left alignment if it is negative.
class
WidthHandler
:
public
fmt
::
internal
::
ArgVisitor
<
WidthHandler
,
unsigned
>
{
private:
WidthHandler
&
operator
=
(
WidthHandler
const
&
);
//no impl
fmt
::
FormatSpec
&
spec_
;
public:
...
...
@@ -283,6 +286,8 @@ class PrecisionHandler :
template
<
typename
T
>
class
ArgConverter
:
public
fmt
::
internal
::
ArgVisitor
<
ArgConverter
<
T
>
,
void
>
{
private:
ArgConverter
&
operator
=
(
ArgConverter
const
&
);
//no impl
fmt
::
internal
::
Arg
&
arg_
;
wchar_t
type_
;
...
...
@@ -321,6 +326,7 @@ class ArgConverter : public fmt::internal::ArgVisitor<ArgConverter<T>, void> {
// Converts an integer argument to char for printf.
class
CharConverter
:
public
fmt
::
internal
::
ArgVisitor
<
CharConverter
,
void
>
{
private:
CharConverter
&
operator
=
(
CharConverter
const
&
);
// no impl
fmt
::
internal
::
Arg
&
arg_
;
public:
...
...
@@ -525,6 +531,8 @@ template <typename Char>
class
fmt
::
internal
::
ArgFormatter
:
public
fmt
::
internal
::
ArgVisitor
<
fmt
::
internal
::
ArgFormatter
<
Char
>
,
void
>
{
private:
ArgFormatter
&
operator
=
(
ArgFormatter
const
&
);
// no impl
fmt
::
BasicFormatter
<
Char
>
&
formatter_
;
fmt
::
BasicWriter
<
Char
>
&
writer_
;
fmt
::
FormatSpec
&
spec_
;
...
...
format.h
View file @
0fea89ec
...
...
@@ -407,14 +407,9 @@ inline int getsign(double value) {
return
sign
;
}
inline
int
isinfinity
(
double
x
)
{
return
!
_finite
(
x
);
}
inline
int
isinfinity
(
long
double
x
)
{
return
!
_finite
(
static_cast
<
double
>
(
x
));
}
#endif
template
<
typename
T
>
struct
IsLongDouble
{
enum
{
VALUE
=
0
};
};
template
<
>
struct
IsLongDouble
<
long
double
>
{
enum
{
VALUE
=
1
};
};
template
<
typename
Char
>
class
BasicCharTraits
{
public:
...
...
@@ -996,6 +991,8 @@ class PrintfFormatter : private FormatterBase {
template
<
typename
Char
>
class
BasicFormatter
:
private
internal
::
FormatterBase
{
private:
BasicFormatter
&
operator
=
(
BasicFormatter
const
&
);
// no impl
BasicWriter
<
Char
>
&
writer_
;
const
Char
*
start_
;
...
...
@@ -1496,6 +1493,9 @@ class BasicWriter {
// Do not implement!
void
operator
<<
(
typename
internal
::
CharTraits
<
Char
>::
UnsupportedStrType
);
template
<
typename
T
>
Char
*
append_float_length
(
Char
*
format_ptr
)
{
return
format_ptr
;
}
friend
class
internal
::
ArgFormatter
<
Char
>
;
friend
class
internal
::
PrintfFormatter
<
Char
>
;
...
...
@@ -1926,8 +1926,8 @@ void BasicWriter<Char>::write_double(
*
format_ptr
++
=
'.'
;
*
format_ptr
++
=
'*'
;
}
if
(
internal
::
IsLongDouble
<
T
>::
VALUE
)
*
format_ptr
++
=
'L'
;
format_ptr
=
append_float_length
<
T
>
(
format_ptr
)
;
*
format_ptr
++
=
type
;
*
format_ptr
=
'\0'
;
...
...
@@ -1981,6 +1981,16 @@ void BasicWriter<Char>::write_double(
}
}
template
<
>
template
<
>
inline
char
*
BasicWriter
<
char
>::
append_float_length
<
long
double
>
(
char
*
format_ptr
)
{
*
format_ptr
++
=
'L'
;
return
format_ptr
;
}
template
<
>
template
<
>
inline
wchar_t
*
BasicWriter
<
wchar_t
>::
append_float_length
<
long
double
>
(
wchar_t
*
format_ptr
)
{
*
format_ptr
++
=
'L'
;
return
format_ptr
;
}
/**
\rst
This template provides operations for formatting and writing data into
...
...
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