mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
std::get のオーバーロード削除
This commit is contained in:
parent
871f9179c4
commit
40036a4c05
10 changed files with 94 additions and 109 deletions
|
@ -2,6 +2,7 @@
|
|||
#define SPROUT_TUPLE_UUID_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <utility>
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/tuple/tuple.hpp>
|
||||
|
@ -24,7 +25,7 @@ namespace sprout {
|
|||
}
|
||||
template<std::size_t I>
|
||||
sprout::uuids::uuid::value_type&& get(sprout::uuids::uuid&& t) SPROUT_NOEXCEPT {
|
||||
return std::move(std::get<I>(t));
|
||||
return std::move(sprout::tuples::get<I>(t));
|
||||
}
|
||||
} // namespace tuples
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue