Skip to content
Snippets Groups Projects
Commit 616780d2 authored by Anthony Lim's avatar Anthony Lim
Browse files

refs #20661 added doc and clang format

parent f7a7cee4
No related branches found
No related tags found
No related merge requests found
......@@ -315,7 +315,8 @@ void MantidTable::cellEdited(int row, int col) {
// Put it back in the stream and let the column deduce the correct
// type of the number.
std::stringstream textStream;
textStream << std::setprecision(std::numeric_limits<long double>::digits10 + 1)<<number;
textStream << std::setprecision(std::numeric_limits<long double>::digits10 +
1) << number;
std::istringstream stream(textStream.str());
c->read(index, stream);
}
......
......@@ -98,7 +98,8 @@ Bug fixes
- :ref:`CubicSpline <func-CubicSpline>` is fixed to sort the y-values and x-values correctly.
- Fix displayed type name for optional boolean properties.
- Fix parameters that are tied to functions can now be untied correctly.
- Fix parameters that are tied to functions can now be untied correctly.
- Table workspaces do not have the values changed by viewing them (no rounding).
Improved
########
......
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