Commit 24e531f7 authored by Kirk Shoop's avatar Kirk Shoop Committed by Facebook Github Bot

fix real-concepts builds

Summary: removed constraints that are no longer valid.

Reviewed By: ericniebler

Differential Revision: D14606943

fbshipit-source-id: bf7acb88e3b6202caaa3e1333d88e5c516eb18e3
parent 88ba2915
...@@ -132,7 +132,7 @@ class flow_many_sender<SF> { ...@@ -132,7 +132,7 @@ class flow_many_sender<SF> {
} }
}; };
template <PUSHMI_TYPE_CONSTRAINT(Sender<is_many<>, is_flow<>>) Data, class DSF> template <PUSHMI_TYPE_CONSTRAINT(Sender) Data, class DSF>
class flow_many_sender<Data, DSF> { class flow_many_sender<Data, DSF> {
Data data_; Data data_;
DSF sf_; DSF sf_;
......
...@@ -140,7 +140,7 @@ class flow_single_sender<SF> { ...@@ -140,7 +140,7 @@ class flow_single_sender<SF> {
}; };
template < template <
PUSHMI_TYPE_CONSTRAINT(Sender<is_single<>, is_flow<>>) Data, PUSHMI_TYPE_CONSTRAINT(Sender) Data,
class DSF> class DSF>
class flow_single_sender<Data, DSF> { class flow_single_sender<Data, DSF> {
Data data_; Data data_;
......
...@@ -134,7 +134,7 @@ class many_sender<SF> { ...@@ -134,7 +134,7 @@ class many_sender<SF> {
} }
}; };
template <PUSHMI_TYPE_CONSTRAINT(Sender<is_many<>>) Data, class DSF> template <PUSHMI_TYPE_CONSTRAINT(Sender) Data, class DSF>
class many_sender<Data, DSF> { class many_sender<Data, DSF> {
Data data_; Data data_;
DSF sf_; DSF sf_;
......
...@@ -169,7 +169,7 @@ class single_sender<SF> { ...@@ -169,7 +169,7 @@ class single_sender<SF> {
}; };
template < template <
PUSHMI_TYPE_CONSTRAINT(Sender<is_single<>>) Data, PUSHMI_TYPE_CONSTRAINT(Sender) Data,
class DSF> class DSF>
class single_sender<Data, DSF> { class single_sender<Data, DSF> {
Data data_; Data data_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment