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
59d0efd6
Commit
59d0efd6
authored
Apr 28, 2016
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update links
parent
56b6c05b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
doc/_templates/layout.html
doc/_templates/layout.html
+3
-3
doc/index.rst
doc/index.rst
+3
-3
fmt/format.h
fmt/format.h
+1
-1
support/update-converity-branch.py
support/update-converity-branch.py
+1
-1
No files found.
doc/_templates/layout.html
View file @
59d0efd6
...
@@ -53,9 +53,9 @@
...
@@ -53,9 +53,9 @@
<a
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
role=
"button"
<a
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
role=
"button"
aria-expanded=
"false"
>
{{ version }}
<span
class=
"caret"
></span></a>
aria-expanded=
"false"
>
{{ version }}
<span
class=
"caret"
></span></a>
<ul
class=
"dropdown-menu"
role=
"menu"
>
<ul
class=
"dropdown-menu"
role=
"menu"
>
<li><a
href=
"http://
cppformat.github.io
/2.0.0/"
>
2.0.0
</a></li>
<li><a
href=
"http://
fmtlib.net
/2.0.0/"
>
2.0.0
</a></li>
<li><a
href=
"http://
cppformat.github.io
/1.1.0/"
>
1.1.0
</a></li>
<li><a
href=
"http://
fmtlib.net
/1.1.0/"
>
1.1.0
</a></li>
<li><a
href=
"http://
cppformat.github.io
/1.0.0/"
>
1.0.0
</a></li>
<li><a
href=
"http://
fmtlib.net
/1.0.0/"
>
1.0.0
</a></li>
</ul>
</ul>
</li>
</li>
{% for name in ['Contents', 'Usage', 'API', 'Syntax'] %}
{% for name in ['Contents', 'Usage', 'API', 'Syntax'] %}
...
...
doc/index.rst
View file @
59d0efd6
Overview
Overview
========
========
**fmt** (
previous
ly cppformat) is an open-source formatting library.
**fmt** (
former
ly cppformat) is an open-source formatting library.
It can be used as a safe alternative to printf or as a fast
It can be used as a safe alternative to printf or as a fast
alternative to C++ IOStreams.
alternative to C++ IOStreams.
...
@@ -149,7 +149,7 @@ Portability
...
@@ -149,7 +149,7 @@ Portability
The library is highly portable. Here is an incomplete list of operating systems and
The library is highly portable. Here is an incomplete list of operating systems and
compilers where it has been tested and known to work:
compilers where it has been tested and known to work:
* 64-bit (amd64) GNU/Linux with GCC 4.4.3, `4.6.3 <https://travis-ci.org/
cppformat/cppforma
t>`_,
* 64-bit (amd64) GNU/Linux with GCC 4.4.3, `4.6.3 <https://travis-ci.org/
fmtlib/fm
t>`_,
4.7.2, 4.8.1 and Intel C++ Compiler (ICC) 14.0.2
4.7.2, 4.8.1 and Intel C++ Compiler (ICC) 14.0.2
* 32-bit (i386) GNU/Linux with GCC 4.4.3, 4.6.3
* 32-bit (i386) GNU/Linux with GCC 4.4.3, 4.6.3
...
@@ -157,7 +157,7 @@ compilers where it has been tested and known to work:
...
@@ -157,7 +157,7 @@ compilers where it has been tested and known to work:
* Mac OS X with GCC 4.2.1 and Clang 4.2, 5.1.0
* Mac OS X with GCC 4.2.1 and Clang 4.2, 5.1.0
* 64-bit Windows with Visual C++ 2010, 2013 and
* 64-bit Windows with Visual C++ 2010, 2013 and
`2015 <https://ci.appveyor.com/project/vitaut/
cppforma
t>`_
`2015 <https://ci.appveyor.com/project/vitaut/
fm
t>`_
* 32-bit Windows with Visual C++ 2010
* 32-bit Windows with Visual C++ 2010
...
...
fmt/format.h
View file @
59d0efd6
...
@@ -2118,7 +2118,7 @@ struct ArgArray<N, true/*IsPacked*/> {
...
@@ -2118,7 +2118,7 @@ struct ArgArray<N, true/*IsPacked*/> {
static
Value
make
(
const
T
&
value
)
{
static
Value
make
(
const
T
&
value
)
{
Value
result
=
MakeValue
<
Formatter
>
(
value
);
Value
result
=
MakeValue
<
Formatter
>
(
value
);
// Workaround a bug in Apple LLVM version 4.2 (clang-425.0.28) of clang:
// Workaround a bug in Apple LLVM version 4.2 (clang-425.0.28) of clang:
// https://github.com/
cppformat/cppforma
t/issues/276
// https://github.com/
fmtlib/fm
t/issues/276
(
void
)
result
.
custom
.
format
;
(
void
)
result
.
custom
.
format
;
return
result
;
return
result
;
}
}
...
...
support/update-converity-branch.py
View file @
59d0efd6
...
@@ -19,7 +19,7 @@ class Git:
...
@@ -19,7 +19,7 @@ class Git:
dir
=
tempfile
.
mkdtemp
()
dir
=
tempfile
.
mkdtemp
()
try
:
try
:
git
=
Git
(
dir
)
git
=
Git
(
dir
)
git
(
'clone'
,
'-b'
,
'coverity'
,
'git@github.com:
cppformat/cppforma
t.git'
,
dir
)
git
(
'clone'
,
'-b'
,
'coverity'
,
'git@github.com:
fmtlib/fm
t.git'
,
dir
)
output
=
git
(
'merge'
,
'-X'
,
'theirs'
,
'--no-commit'
,
'origin/master'
)
output
=
git
(
'merge'
,
'-X'
,
'theirs'
,
'--no-commit'
,
'origin/master'
)
if
'Fast-forward'
not
in
output
:
if
'Fast-forward'
not
in
output
:
git
(
'reset'
,
'HEAD'
,
'.travis.yml'
)
git
(
'reset'
,
'HEAD'
,
'.travis.yml'
)
...
...
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