Skip to content
Snippets Groups Projects
Commit 742c36c7 authored by Edward Brown's avatar Edward Brown
Browse files

Re #22048: Moved squashed comments causing clang-format failure.

parent f9b677ca
No related merge requests found
......@@ -412,10 +412,11 @@ private:
using column_it = std::vector<
boost::shared_ptr<API::Column>>::iterator; ///< Column iterator
///< Column const iterator
using column_const_it =
std::vector<boost::shared_ptr<API::Column>>::const_iterator; ///< Column
///const
///iterator
std::vector<boost::shared_ptr<API::Column>>::const_iterator;
/// Shared pointers to the columns.
std::vector<boost::shared_ptr<API::Column>> m_columns;
/// row count
......@@ -432,5 +433,5 @@ using TableWorkspace_sptr = boost::shared_ptr<TableWorkspace>;
using TableWorkspace_const_sptr = boost::shared_ptr<const TableWorkspace>;
} // namespace DataObjects
} // Namespace Mantid
#endif /*MANTID_DATAOBJECTS_TABLEWORKSPACE_H_*/
......@@ -42,12 +42,11 @@ class MANTID_GEOMETRY_DLL SurfaceFactory {
private:
// workaround because gcc 4.4 cannot have std::unique_ptr inside a std::map.
// http://stackoverflow.com/questions/7342703/gcc-4-4-4-5-unique-ptr-not-work-for-unordered-set-unordered-map
///< Storage of surface pointers.
using MapType =
std::vector<std::pair<std::string, std::unique_ptr<Surface>>>; ///<
///Storage
///of
///surface
///pointers
std::vector<std::pair<std::string, std::unique_ptr<Surface>>>;
static SurfaceFactory *FOBJ; ///< Effective "this"
MapType SGrid; ///< The tally stack
......
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