From cb9ea47e7825b5073d4d645afb94f6326cb7cf4d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 6 Sep 2009 12:52:53 +0200 Subject: Start the libcutl repository --- cutl/meta/remove-cv.hxx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cutl/meta/remove-cv.hxx (limited to 'cutl/meta/remove-cv.hxx') diff --git a/cutl/meta/remove-cv.hxx b/cutl/meta/remove-cv.hxx new file mode 100644 index 0000000..5a7de7a --- /dev/null +++ b/cutl/meta/remove-cv.hxx @@ -0,0 +1,24 @@ +// file : cutl/meta/remove-cv.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#ifndef CUTL_META_REMOVE_CV_HXX +#define CUTL_META_REMOVE_CV_HXX + +#include +#include + +namespace cutl +{ + namespace meta + { + template + struct remove_cv + { + typedef typename remove_v::r>::r r; + }; + } +} + +#endif // CUTL_META_REMOVE_CV_HXX -- cgit v1.1