diff options
| author | ljfa-ag <ljfa-ag@web.de> | 2015-07-03 18:45:44 +0200 |
|---|---|---|
| committer | ljfa-ag <ljfa-ag@web.de> | 2015-07-03 18:45:44 +0200 |
| commit | c9bbfc47734709221a64381e04b3e823a98b06ff (patch) | |
| tree | 583fac400b03d73b56d151a292e4d45a4b208c1a /include | |
| parent | b64e3db8d02ba4668a3175163fe438c57cff16e4 (diff) | |
| download | Project-Tick-c9bbfc47734709221a64381e04b3e823a98b06ff.tar.gz Project-Tick-c9bbfc47734709221a64381e04b3e823a98b06ff.zip | |
Readd value constructor from tag&&
Diffstat (limited to 'include')
| -rw-r--r-- | include/value.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/value.h b/include/value.h index a46d79e7c5..3aa056b35c 100644 --- a/include/value.h +++ b/include/value.h @@ -42,6 +42,7 @@ class value public: value() {} explicit value(std::unique_ptr<tag>&& t); + explicit value(tag&& t); //Movable but not (implicitly) copyable value(const value&) = delete; |
