STYLE: consistent ordering of "inline explicit" vs. "explicit inline"

- resolve in favour of "inline explicit", which had marginally more
  uses and provides consistent prefixing for inline methods.
This commit is contained in:
Mark Olesen
2018-05-30 12:11:13 +02:00
parent f9fe71815a
commit 2aaae74ee1
23 changed files with 53 additions and 53 deletions

View File

@ -162,10 +162,10 @@ public:
inline treeBoundBox();
//- Construct from a boundBox
explicit inline treeBoundBox(const boundBox& bb);
inline explicit treeBoundBox(const boundBox& bb);
//- Construct a bounding box containing a single initial point
explicit inline treeBoundBox(const point& pt);
inline explicit treeBoundBox(const point& pt);
//- Construct from components
inline treeBoundBox(const point& min, const point& max);