Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
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
spdlog
Commits
4ed60bef
Commit
4ed60bef
authored
Mar 22, 2014
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fixes
parent
8d83c0b2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
9 deletions
+12
-9
example/example.cpp
example/example.cpp
+2
-2
include/c11log/details/fast_buf.h
include/c11log/details/fast_buf.h
+4
-1
include/c11log/details/fast_oss.h
include/c11log/details/fast_oss.h
+6
-6
No files found.
example/example.cpp
View file @
4ed60bef
include/c11log/details/fast_buf.h
View file @
4ed60bef
...
...
@@ -9,7 +9,10 @@
// stores its contents on the stack when possible, in vector<char> otherwise
// NOTE: User should be remember that returned buffer might be on the stack!!
namespace
c11log
{
namespace
details
{
namespace
c11log
{
namespace
details
{
template
<
std
::
size_t
STACK_SIZE
=
128
>
class
fast_buf
...
...
include/c11log/details/fast_oss.h
View file @
4ed60bef
...
...
@@ -25,7 +25,7 @@ public:
return
_fastbuf
.
get
();
}
void
reset_st
r
()
void
clea
r
()
{
_fastbuf
.
clear
();
}
...
...
@@ -73,9 +73,9 @@ public:
return
_dev
.
buf
();
}
void
reset_st
r
()
void
clea
r
()
{
_dev
.
reset_st
r
();
_dev
.
clea
r
();
}
private:
...
...
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