2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-27 17:12:11 +00:00

removed some unused parameter names

[SVN r10943]
This commit is contained in:
Jeremy Siek
2001-08-28 01:01:02 +00:00
parent 38d9e1c16a
commit a8169117e7

View File

@@ -68,13 +68,13 @@ namespace boost {
// Stop the recursion and return error
template <class T, class Tag>
static detail::error_property_not_found&
get_value(no_property&, T* t, Tag tag) {
get_value(no_property&, T*, Tag) {
static error_property_not_found s_prop_not_found;
return s_prop_not_found;
}
template <class T, class Tag>
static const detail::error_property_not_found&
const_get_value(const no_property&, T* t, Tag tag) {
const_get_value(const no_property&, T*, Tag) {
static error_property_not_found s_prop_not_found;
return s_prop_not_found;
}