Skip to the content.

:heavy_check_mark: internal/unconstructible.hpp

Required by

Verified with

Code

#pragma once


namespace uni {

namespace internal {


struct unconstructible  {
  private:
    template<class... Args>
    unconstructible(Args...) = delete;
};


} // namespace internal

} // namespace uni
#line 2 "internal/unconstructible.hpp"


namespace uni {

namespace internal {


struct unconstructible  {
  private:
    template<class... Args>
    unconstructible(Args...) = delete;
};


} // namespace internal

} // namespace uni
Back to top page