Parcourir la source

Type field added to the Wrapper class.

main
offa il y a 7 ans
Parent
révision
400b71f3c3
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. +6
    -0
      include/detail/wrapper.h

+ 6
- 0
include/detail/wrapper.h Voir le fichier

@@ -59,6 +59,9 @@ namespace sr::detail
}


using type = T;


private:

Wrapper(const T& value) noexcept(noexcept(T{value})) : m_value(value)
@@ -102,6 +105,9 @@ namespace sr::detail
}


using type = std::reference_wrapper<T>;


private:

std::reference_wrapper<T> m_value;

Chargement…
Annuler
Enregistrer