From 64eaafb4cdc7bc0ee418af0fc2ae4e49691c68d0 Mon Sep 17 00:00:00 2001 From: raver119 Date: Wed, 4 Sep 2019 08:38:22 +0300 Subject: [PATCH] remove unwanted noexcept Signed-off-by: raver119 --- libnd4j/include/array/ConstantHolder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnd4j/include/array/ConstantHolder.h b/libnd4j/include/array/ConstantHolder.h index 137d26f29..f6352fd2c 100644 --- a/libnd4j/include/array/ConstantHolder.h +++ b/libnd4j/include/array/ConstantHolder.h @@ -39,7 +39,7 @@ namespace nd4j { ~ConstantHolder() = default; ConstantHolder& operator=(const ConstantHolder& other) = default; - ConstantHolder& operator=(ConstantHolder&& other) noexcept = default; + ConstantHolder& operator=(ConstantHolder&& other) = default; bool hasBuffer(nd4j::DataType dataType);