We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
意味解析を走らせるとき,その構文がどんなスコープに居るのかを教えてあげるオブジェクト.
もとのスコープを壊すことなく,一時的にスコープの情報をいじりたいとき使う.
Scope* sc; // 一時的に extern(Windows) なスコープを作る sc = sc->push(); sc->linkage = LINKwindows; ... // もとのスコープを取り戻す sc = sc->pop();