Merge remote-tracking branch 'origin/develop' into develop-pre-release

This commit is contained in:
mattijs
2018-05-31 17:34:16 +01:00
1098 changed files with 4845 additions and 3834 deletions

View File

@ -256,7 +256,7 @@ public:
// Housekeeping
//- Disallow assignment from plain pointer
//- No copy assignment from plain pointer
// \deprecated Convenient, but uncontrolled access (FEB-2018)
void operator=(T* p) = delete;
};

View File

@ -241,7 +241,7 @@ public:
// Housekeeping
//- Disallow assignment from literal nullptr.
//- No assignment from literal nullptr.
// Consistent with run-time check for nullptr on assignment.
void operator=(std::nullptr_t) = delete;
};