Iros
 
Loading...
Searching...
No Matches
dangling.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::container {
4struct Dangling {
5 constexpr Dangling() = default;
6
7 template<typename... Args>
8 constexpr Dangling(Args&&...) {}
9};
10}
Definition sequence.h:12
constexpr Dangling()=default
constexpr Dangling(Args &&...)
Definition dangling.h:8