Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkpu <github@kheafield.com>2018-06-24 16:13:52 +0300
committerkpu <github@kheafield.com>2018-06-24 16:13:52 +0300
commitb8cc48306beabed638fbc8eb621609c3de08ee3f (patch)
tree41d385c87fb3b553bde55315219d83668b0eb408 /aligned.h
parentc71ff37b3aa50ab969ef65549e4913aa110eb3cb (diff)
Avoid C++11 in aligned.h
Diffstat (limited to 'aligned.h')
-rw-r--r--aligned.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/aligned.h b/aligned.h
index d611caf..08610b2 100644
--- a/aligned.h
+++ b/aligned.h
@@ -21,8 +21,9 @@ template <class T> class AlignedVector {
private:
T *mem_;
- AlignedVector(AlignedVector &) = delete;
- AlignedVector &operator=(AlignedVector &) = delete;
+ // Deleted.
+ AlignedVector(AlignedVector &);
+ AlignedVector &operator=(AlignedVector &);
};
} // namespace intgemm