summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/persistence/common/persistenceproviderwrapper.h
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-07-30 21:49:37 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-07-30 21:49:37 +0200
commit0d58172a97648bd6823b675fcd7df49be3729562 (patch)
treefa4d031538ffbf212f5aabbe89c95925f185499d /storage/src/tests/persistence/common/persistenceproviderwrapper.h
parent753e9f322ee8a1dccd598c0dbab2c937e3c552cc (diff)
Use enum class for storage::spi::Result::ErrorType.
Diffstat (limited to 'storage/src/tests/persistence/common/persistenceproviderwrapper.h')
-rw-r--r--storage/src/tests/persistence/common/persistenceproviderwrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/tests/persistence/common/persistenceproviderwrapper.h b/storage/src/tests/persistence/common/persistenceproviderwrapper.h
index 1f0dc93c44c..511ced02118 100644
--- a/storage/src/tests/persistence/common/persistenceproviderwrapper.h
+++ b/storage/src/tests/persistence/common/persistenceproviderwrapper.h
@@ -65,7 +65,7 @@ public:
_result = result;
}
void clearResult() {
- _result = spi::Result(spi::Result::NONE, "");
+ _result = spi::Result(spi::Result::ErrorType::NONE, "");
}
const spi::Result& getResult() const { return _result; }
/**