Parcourir la source

Using class instead of struct.

main
offa il y a 7 ans
Parent
révision
82031d03ad
1 fichiers modifiés avec 7 ajouts et 2 suppressions
  1. +7
    -2
      include/detail/wrapper.h

+ 7
- 2
include/detail/wrapper.h Voir le fichier

@@ -21,6 +21,7 @@
#pragma once

#include <functional>
#include <type_traits>

namespace sr
{
@@ -28,8 +29,10 @@ namespace sr
{

template<class T>
struct Wrapper
class Wrapper
{
public:

template<class TT, class G, std::enable_if_t<std::is_constructible<T, TT>::value, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(Wrapper{value})) : Wrapper(value)
{
@@ -74,8 +77,10 @@ namespace sr


template<class T>
struct Wrapper<T&>
class Wrapper<T&>
{
public:

template<class TT, class G, std::enable_if_t<std::is_convertible<TT, T&>::value, int> = 0>
explicit Wrapper(TT&& value, G&& g) noexcept(noexcept(static_cast<T&>(value))) : m_value(static_cast<T&>(value))
{

Chargement…
Annuler
Enregistrer