Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Joshua
wendelin.core
Commits
f3985859
Commit
f3985859
authored
Jan 14, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
0aed1c6b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
wcfs/internal/wcfs.cpp
wcfs/internal/wcfs.cpp
+1
-1
wcfs/internal/wcfs_misc.cpp
wcfs/internal/wcfs_misc.cpp
+2
-2
wcfs/internal/wcfs_misc.h
wcfs/internal/wcfs_misc.h
+1
-1
No files found.
wcfs/internal/wcfs.cpp
View file @
f3985859
...
...
@@ -104,7 +104,7 @@ pair<Conn, error> WCFS::connect(zodb::Tid at) {
// close releases resources associated with wconn.
//
// opened fileh and mappings become invalid to use.
// opened fileh and mappings become
s
invalid to use.
// XXX what happens to file mmappings?
error
_Conn
::
close
()
{
_Conn
&
wconn
=
*
this
;
...
...
wcfs/internal/wcfs_misc.cpp
View file @
f3985859
...
...
@@ -233,8 +233,8 @@ Contextf::Contextf(const char *format, ...) {
va_end
(
argp
);
}
error
Contextf
::
operator
()
(
error
err
)
{
Contextf
&
c
=
*
this
;
error
Contextf
::
operator
()
(
error
err
)
const
{
const
Contextf
&
c
=
*
this
;
if
(
err
==
nil
)
return
nil
;
...
...
wcfs/internal/wcfs_misc.h
View file @
f3985859
...
...
@@ -169,7 +169,7 @@ class Contextf {
public:
Contextf
(
const
char
*
format
,
...);
error
operator
()
(
error
);
error
operator
()
(
error
)
const
;
};
}
...
...
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