ICU-4330 Code is missing namespace. This is required for genren.pl.

X-SVN-Rev: 18050
This commit is contained in:
George Rhoten 2005-06-24 23:55:37 +00:00
parent 66eb872e54
commit f4da3f7dae
2 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,8 @@
#define DEBUG 0
U_NAMESPACE_BEGIN
struct PairInfo {
le_uint32 key; // sigh, MSVC compiler gags on union here
le_int16 value; // fword, kern value in funits
@ -188,3 +190,6 @@ void KernTable::process(LEGlyphStorage& storage)
storage.adjustPosition(storage.getGlyphCount(), adjust, 0, success);
}
}
U_NAMESPACE_END

View File

@ -18,6 +18,7 @@
#include <stdio.h>
U_NAMESPACE_BEGIN
struct PairInfo;
/**
@ -43,4 +44,6 @@ class U_LAYOUT_API KernTable
void process(LEGlyphStorage& storage);
};
U_NAMESPACE_END
#endif