Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
4eb7ffdb
Commit
4eb7ffdb
authored
Aug 04, 2013
by
David Renshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get this to compile with g++-mp-4.8
parent
3c4e9c55
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
compiler.c++
c++/src/capnp/compiler/compiler.c++
+1
-1
compiler.h
c++/src/capnp/compiler/compiler.h
+1
-1
lexer.h
c++/src/capnp/compiler/lexer.h
+1
-1
module-loader.h
c++/src/capnp/compiler/module-loader.h
+1
-1
parser.h
c++/src/capnp/compiler/parser.h
+1
-1
No files found.
c++/src/capnp/compiler/compiler.c++
View file @
4eb7ffdb
...
@@ -211,7 +211,7 @@ private:
...
@@ -211,7 +211,7 @@ private:
class
Compiler
::
Impl
:
public
SchemaLoader
::
LazyLoadCallback
{
class
Compiler
::
Impl
:
public
SchemaLoader
::
LazyLoadCallback
{
public
:
public
:
Impl
();
Impl
();
virtual
~
Impl
();
virtual
~
Impl
()
noexcept
(
false
)
;
uint64_t
add
(
const
Module
&
module
,
Mode
mode
)
const
;
uint64_t
add
(
const
Module
&
module
,
Mode
mode
)
const
;
kj
::
Maybe
<
uint64_t
>
lookup
(
uint64_t
parent
,
kj
::
StringPtr
childName
)
const
;
kj
::
Maybe
<
uint64_t
>
lookup
(
uint64_t
parent
,
kj
::
StringPtr
childName
)
const
;
...
...
c++/src/capnp/compiler/compiler.h
View file @
4eb7ffdb
...
@@ -56,7 +56,7 @@ class Compiler {
...
@@ -56,7 +56,7 @@ class Compiler {
public
:
public
:
Compiler
();
Compiler
();
~
Compiler
();
~
Compiler
()
noexcept
(
false
)
;
KJ_DISALLOW_COPY
(
Compiler
);
KJ_DISALLOW_COPY
(
Compiler
);
enum
Mode
{
enum
Mode
{
...
...
c++/src/capnp/compiler/lexer.h
View file @
4eb7ffdb
...
@@ -53,7 +53,7 @@ public:
...
@@ -53,7 +53,7 @@ public:
// `orphanage` is used to allocate Cap'n Proto message objects in the result. `inputStart` is
// `orphanage` is used to allocate Cap'n Proto message objects in the result. `inputStart` is
// a pointer to the beginning of the input, used to compute byte offsets.
// a pointer to the beginning of the input, used to compute byte offsets.
~
Lexer
();
~
Lexer
()
noexcept
(
false
)
;
class
ParserInput
:
public
kj
::
parse
::
IteratorInput
<
char
,
const
char
*>
{
class
ParserInput
:
public
kj
::
parse
::
IteratorInput
<
char
,
const
char
*>
{
// Like IteratorInput<char, const char*> except that positions are measured as byte offsets
// Like IteratorInput<char, const char*> except that positions are measured as byte offsets
...
...
c++/src/capnp/compiler/module-loader.h
View file @
4eb7ffdb
...
@@ -40,7 +40,7 @@ public:
...
@@ -40,7 +40,7 @@ public:
KJ_DISALLOW_COPY
(
ModuleLoader
);
KJ_DISALLOW_COPY
(
ModuleLoader
);
~
ModuleLoader
();
~
ModuleLoader
()
noexcept
(
false
)
;
void
addImportPath
(
kj
::
String
path
);
void
addImportPath
(
kj
::
String
path
);
// Add a directory to the list of paths that is searched for imports that start with a '/'.
// Add a directory to the list of paths that is searched for imports that start with a '/'.
...
...
c++/src/capnp/compiler/parser.h
View file @
4eb7ffdb
...
@@ -52,7 +52,7 @@ public:
...
@@ -52,7 +52,7 @@ public:
// `orphanage` is used to allocate Cap'n Proto message objects in the result. `inputStart` is
// `orphanage` is used to allocate Cap'n Proto message objects in the result. `inputStart` is
// a pointer to the beginning of the input, used to compute byte offsets.
// a pointer to the beginning of the input, used to compute byte offsets.
~
CapnpParser
();
~
CapnpParser
()
noexcept
(
false
)
;
KJ_DISALLOW_COPY
(
CapnpParser
);
KJ_DISALLOW_COPY
(
CapnpParser
);
...
...
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