mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-535 Fixed some compiler warnings
X-SVN-Rev: 2542
This commit is contained in:
parent
ef1328e9b6
commit
5244d856d6
1 changed files with 6 additions and 6 deletions
|
@ -39,8 +39,8 @@ class ReplaceableGlue : public Replaceable {
|
|||
|
||||
public:
|
||||
|
||||
ReplaceableGlue(UReplaceable *rep,
|
||||
UReplaceableCallbacks *func);
|
||||
ReplaceableGlue(UReplaceable *replaceable,
|
||||
UReplaceableCallbacks *funcCallback);
|
||||
|
||||
virtual ~ReplaceableGlue();
|
||||
|
||||
|
@ -58,10 +58,10 @@ public:
|
|||
};
|
||||
|
||||
|
||||
ReplaceableGlue::ReplaceableGlue(UReplaceable *rep,
|
||||
UReplaceableCallbacks *func) {
|
||||
this->rep = rep;
|
||||
this->func = func;
|
||||
ReplaceableGlue::ReplaceableGlue(UReplaceable *replaceable,
|
||||
UReplaceableCallbacks *funcCallback) {
|
||||
this->rep = replaceable;
|
||||
this->func = funcCallback;
|
||||
buf = 0;
|
||||
bufLen = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue