Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCCL
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
WCCL
Commits
c93442b7
Commit
c93442b7
authored
13 years ago
by
Adam Radziszewski
Browse files
Options
Downloads
Patches
Plain Diff
get rid of bare type get functions from functional op SWIG (ambiguous with shared_ptr::get)
parent
12105975
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swig/functionalopsequence.i
+6
-6
6 additions, 6 deletions
swig/functionalopsequence.i
with
6 additions
and
6 deletions
swig/functionalopsequence.i
+
6
−
6
View file @
c93442b7
...
...
@@ -43,8 +43,8 @@ namespace Wccl {
virtual bool empty() const = 0;
/* --------------------------------------------------------------------- */
virtual FunctionalOperator& get(size_t idx) = 0;
virtual const FunctionalOperator& get(size_t idx) const = 0;
//
virtual FunctionalOperator& get(size_t idx) = 0;
//
virtual const FunctionalOperator& get(size_t idx) const = 0;
/* --------------------------------------------------------------------- */
virtual fun_op_ptr_t get_untyped_ptr(size_t idx) = 0;
...
...
@@ -94,8 +94,8 @@ namespace Wccl {
void append(const fun_op_ptr_t& op);
/* --------------------------------------------------------------------- */
op_t& get(size_t idx);
const op_t& get(size_t idx) const;
//
op_t& get(size_t idx);
//
const op_t& get(size_t idx) const;
/* --------------------------------------------------------------------- */
fun_op_ptr_t get_untyped_ptr(size_t idx);
...
...
@@ -159,8 +159,8 @@ namespace Wccl {
void append(const op_ptr_t& op);
/* --------------------------------------------------------------------- */
op_t& get(size_t idx);
const op_t& get(size_t idx) const;
//
op_t& get(size_t idx);
//
const op_t& get(size_t idx) const;
/* --------------------------------------------------------------------- */
op_ptr_t get_ptr(size_t idx);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment