Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bpftrace
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
Kirill Smelkov
bpftrace
Commits
0eddba70
Commit
0eddba70
authored
Jan 15, 2019
by
williangaspar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes:
https://github.com/iovisor/bpftrace/issues/340
parent
96389e4a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/ast/ast.h
src/ast/ast.h
+4
-4
No files found.
src/ast/ast.h
View file @
0eddba70
...
...
@@ -204,19 +204,19 @@ public:
class
AttachPoint
:
public
Node
{
public:
explicit
AttachPoint
(
const
std
::
string
&
provider
)
:
provider
(
pro
vider
)
{
}
:
provider
(
pro
betypeName
(
provider
)
)
{
}
AttachPoint
(
const
std
::
string
&
provider
,
const
std
::
string
&
func
)
:
provider
(
pro
vider
),
func
(
func
),
need_expansion
(
true
)
{
}
:
provider
(
pro
betypeName
(
provider
)
),
func
(
func
),
need_expansion
(
true
)
{
}
AttachPoint
(
const
std
::
string
&
provider
,
const
std
::
string
&
target
,
const
std
::
string
&
func
,
bool
need_expansion
)
:
provider
(
pro
vider
),
target
(
target
),
func
(
func
),
need_expansion
(
need_expansion
)
{
}
:
provider
(
pro
betypeName
(
provider
)
),
target
(
target
),
func
(
func
),
need_expansion
(
need_expansion
)
{
}
AttachPoint
(
const
std
::
string
&
provider
,
const
std
::
string
&
target
,
int
freq
)
:
provider
(
pro
vider
),
target
(
target
),
freq
(
freq
),
need_expansion
(
true
)
{
}
:
provider
(
pro
betypeName
(
provider
)
),
target
(
target
),
freq
(
freq
),
need_expansion
(
true
)
{
}
std
::
string
provider
;
std
::
string
target
;
...
...
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