ICU-13667 Making =delete APIdocs consistent in numberformatter.h

X-SVN-Rev: 41495
This commit is contained in:
Shane Carr 2018-05-31 22:04:08 +00:00
parent 51688fda25
commit 08134fc59e

View file

@ -2539,8 +2539,14 @@ class U_I18N_API FormattedNumber : public UMemory {
#endif
// Don't allow copying of FormattedNumber, but moving is okay.
/**
* Copying not supported; use move constructor instead.
*/
FormattedNumber(const FormattedNumber&) = delete;
/**
* Copying not supported; use move assignment instead.
*/
FormattedNumber& operator=(const FormattedNumber&) = delete;
/**
@ -2626,7 +2632,6 @@ class U_I18N_API NumberFormatter final {
/**
* Use factory methods instead of the constructor to create a NumberFormatter.
* @draft ICU 60
*/
NumberFormatter() = delete;
};