Found a bug where when using expected &operator=() while providing an expected value and not allowing exceptions to be used TL_EXPECTED_EXCEPTIONS_ENABLED = false then a variable tmp is set but unused which causes the error error: variable 'tmp' set but not used during C++ compilation.
Found a bug where when using
expected &operator=()
while providing an expected value and not allowing exceptions to be usedTL_EXPECTED_EXCEPTIONS_ENABLED = false
then a variabletmp
is set but unused which causes the errorerror: variable 'tmp' set but not used
during C++ compilation.