Skip to content
Snippets Groups Projects
Commit 23204f5e authored by Sam Jenkins's avatar Sam Jenkins
Browse files

Re #0 clang formatting

parent d27708d2
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
#include "MantidKernel/DllConfig.h"
#include "MantidKernel/System.h"
#include <numeric_limits>
#include <limits>
namespace Mantid {
......@@ -23,25 +23,31 @@ namespace Mantid {
* Returns what we consider an "empty" integer within a property
* @returns An flag value
*/
constexpr int EMPTY_INT() noexcept { return std::numeric_limits<int>::max();; }
constexpr int EMPTY_INT() noexcept { return std::numeric_limits<int>::max(); }
/**
* Returns what we consider an "empty" long within a property
* @returns An flag value
*/
constexpr long EMPTY_LONG() noexcept { return std::numeric_limits<long>::max();; }
constexpr long EMPTY_LONG() noexcept {
return std::numeric_limits<long>::max();
}
/**
* Returns what we consider an "empty" int64_t within a property
* @returns An flag value
*/
constexpr int64_t EMPTY_INT64() noexcept { return std::numeric_limits<int64_t>::max();; }
constexpr int64_t EMPTY_INT64() noexcept {
return std::numeric_limits<int64_t>::max();
}
/**
* Returns what we consider an "empty" double within a property
* @returns An flag value
*/
constexpr double EMPTY_DBL() noexcept { return std::numeric_limits<double>::max(); / 2; }
constexpr double EMPTY_DBL() noexcept {
return std::numeric_limits<double>::max() / 2;
}
} // namespace Mantid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment