summaryrefslogtreecommitdiff
path: root/include/CommonAPI/Deployment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/CommonAPI/Deployment.hpp')
-rw-r--r--include/CommonAPI/Deployment.hpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/CommonAPI/Deployment.hpp b/include/CommonAPI/Deployment.hpp
index df88250..c4f8550 100644
--- a/include/CommonAPI/Deployment.hpp
+++ b/include/CommonAPI/Deployment.hpp
@@ -46,9 +46,9 @@ namespace CommonAPI {
// > itsDeployment(<PARAMS);
template<typename... _Types>
struct Deployment {
- Deployment(_Types... _values) : values_(_values...) {}
+ Deployment(_Types*... _values) : values_(_values...) {}
- std::tuple<_Types...> values_;
+ std::tuple<_Types*...> values_;
};
template<typename _ElementDepl>
@@ -71,10 +71,6 @@ struct MapDeployment {
// Convenience definition of an empty deployment.
typedef Deployment<> EmptyDeployment;
-// The general purpose empty deployment. Use this whenever
-// you need to provide a reference to an empty deployment.
-extern EmptyDeployment empty;
-
} // namespace CommonAPI
#endif // COMMONAPI_DEPLOYABLE_HPP_