remove unwanted noexcept

Signed-off-by: raver119 <raver119@gmail.com>
master
raver119 2019-09-04 08:38:22 +03:00
parent 7abc574eeb
commit 64eaafb4cd
1 changed files with 1 additions and 1 deletions

View File

@ -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);