undef-directive: | (undef | x) [private | protected | public] <ident> |
Undefines (removes) a variable or user defined function. If no visibility (public, protected, or private) is specified, ISPP first tries to remove a private variable of the given name, then protected, then public.
#undef MyVar
#undef MyFunction
#undef public MyVar