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
e0ac51cb
Commit
e0ac51cb
authored
May 01, 2016
by
Jakub Wilk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
parent
4e279e2a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
CMakeLists.txt
CMakeLists.txt
+1
-1
ChangeLog.rst
ChangeLog.rst
+2
-2
doc/usage.rst
doc/usage.rst
+1
-1
fmt/posix.h
fmt/posix.h
+2
-2
No files found.
CMakeLists.txt
View file @
e0ac51cb
...
...
@@ -51,7 +51,7 @@ endif ()
if
(
MASTER_PROJECT AND CMAKE_GENERATOR MATCHES
"Visual Studio"
)
# If Microsoft SDK is installed create script run-msbuild.bat that
# calls SetEnv.cmd to
to
set up build environment and runs msbuild.
# calls SetEnv.cmd to set up build environment and runs msbuild.
# It is useful when building Visual Studio projects with the SDK
# toolchain rather than Visual Studio.
include
(
FindSetEnv
)
...
...
ChangeLog.rst
View file @
e0ac51cb
...
...
@@ -435,7 +435,7 @@ Fixes
`@MariadeAnton <https://github.com/MariadeAnton>`_ and
`@franramirez688 <https://github.com/franramirez688>`_.
* Improved support for bulding with `Android NDK
* Improved support for bu
i
lding with `Android NDK
<https://developer.android.com/tools/sdk/ndk/index.html>`_
(`#107 <https://github.com/fmtlib/fmt/pull/107>`_).
Thanks to `@newnon <https://github.com/newnon>`_.
...
...
@@ -621,7 +621,7 @@ Fixes
Apart from a more natural syntax, this also improves performance as there
is no need to construct temporary formatter objects and control arguments'
lifetimes. Because the wrapper functions are very lig
th
weight, this doesn't
lifetimes. Because the wrapper functions are very lig
ht
weight, this doesn't
cause code bloat even in pre-C++11 mode.
* Simplified common case of formatting an ``std::string``. Now it requires a
...
...
doc/usage.rst
View file @
e0ac51cb
...
...
@@ -69,7 +69,7 @@ the previous section. Then compile the ``doc`` target/project, for example::
make doc
This will generate the HTML documenation in ``doc/html``.
This will generate the HTML documen
t
ation in ``doc/html``.
Android NDK
===========
...
...
fmt/posix.h
View file @
e0ac51cb
...
...
@@ -145,7 +145,7 @@ public:
// A "move constructor" for moving from a temporary.
BufferedFile
(
Proxy
p
)
FMT_NOEXCEPT
:
file_
(
p
.
file
)
{}
// A "move constructor" for
for
moving from an lvalue.
// A "move constructor" for moving from an lvalue.
BufferedFile
(
BufferedFile
&
f
)
FMT_NOEXCEPT
:
file_
(
f
.
file_
)
{
f
.
file_
=
0
;
}
...
...
@@ -251,7 +251,7 @@ class File {
// A "move constructor" for moving from a temporary.
File
(
Proxy
p
)
FMT_NOEXCEPT
:
fd_
(
p
.
fd
)
{}
// A "move constructor" for
for
moving from an lvalue.
// A "move constructor" for moving from an lvalue.
File
(
File
&
other
)
FMT_NOEXCEPT
:
fd_
(
other
.
fd_
)
{
other
.
fd_
=
-
1
;
}
...
...
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