mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-13667 Making =delete APIdocs consistent in numberformatter.h
X-SVN-Rev: 41495
This commit is contained in:
parent
51688fda25
commit
08134fc59e
1 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue