Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Commits
f5c2c707
Commit
f5c2c707
authored
5 years ago
by
Jan Trávníček
Browse files
Options
Downloads
Patches
Plain Diff
remove not needed virtual method declaration
parent
383a36a8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
alib2abstraction/src/abstraction/ValueProvider.hpp
+0
-10
0 additions, 10 deletions
alib2abstraction/src/abstraction/ValueProvider.hpp
with
0 additions
and
10 deletions
alib2abstraction/src/abstraction/ValueProvider.hpp
+
0
−
10
View file @
f5c2c707
...
@@ -46,8 +46,6 @@ public:
...
@@ -46,8 +46,6 @@ public:
throw
std
::
domain_error
(
"Value not copy constructible"
);
throw
std
::
domain_error
(
"Value not copy constructible"
);
}
}
}
}
virtual
bool
eval
(
)
=
0
;
};
};
template
<
class
Type
>
template
<
class
Type
>
...
@@ -66,8 +64,6 @@ public:
...
@@ -66,8 +64,6 @@ public:
Type
&
getValue
(
bool
)
const
{
Type
&
getValue
(
bool
)
const
{
return
getData
(
);
return
getData
(
);
}
}
virtual
bool
eval
(
)
=
0
;
};
};
template
<
class
Type
>
template
<
class
Type
>
...
@@ -86,8 +82,6 @@ public:
...
@@ -86,8 +82,6 @@ public:
const
Type
&
getValue
(
bool
)
const
{
const
Type
&
getValue
(
bool
)
const
{
return
getConstData
(
);
return
getConstData
(
);
}
}
virtual
bool
eval
(
)
=
0
;
};
};
template
<
class
Type
>
template
<
class
Type
>
...
@@ -109,8 +103,6 @@ public:
...
@@ -109,8 +103,6 @@ public:
else
else
throw
std
::
domain_error
(
"Value not copy constructible"
);
throw
std
::
domain_error
(
"Value not copy constructible"
);
}
}
virtual
bool
eval
(
)
=
0
;
};
};
template
<
class
Type
>
template
<
class
Type
>
...
@@ -132,8 +124,6 @@ public:
...
@@ -132,8 +124,6 @@ public:
else
else
throw
std
::
domain_error
(
"Value not copy constructible"
);
throw
std
::
domain_error
(
"Value not copy constructible"
);
}
}
virtual
bool
eval
(
)
=
0
;
};
};
}
/* namespace abstraction */
}
/* namespace abstraction */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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