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:
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