mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 08:44:48 +00:00
705a6376bd
llvm-svn: 10070
13 lines
144 B
C++
13 lines
144 B
C++
struct Gfx {
|
|
void opMoveSetShowText();
|
|
};
|
|
|
|
struct Operator {
|
|
void (Gfx::*func)();
|
|
};
|
|
|
|
Operator opTab[] = {
|
|
{&Gfx::opMoveSetShowText},
|
|
};
|
|
|