Explorar el Código

Type field added to the Wrapper class.

main
offa hace 7 años
padre
commit
400b71f3c3
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      include/detail/wrapper.h

+ 6
- 0
include/detail/wrapper.h Ver fichero

} }




using type = T;


private: private:


Wrapper(const T& value) noexcept(noexcept(T{value})) : m_value(value) Wrapper(const T& value) noexcept(noexcept(T{value})) : m_value(value)
} }




using type = std::reference_wrapper<T>;


private: private:


std::reference_wrapper<T> m_value; std::reference_wrapper<T> m_value;

Cargando…
Cancelar
Guardar