グラムを使用している場合++メンバ変数がoffsetofはするとして、私はテンプレートパラメータを渡し、私は次の警告を取得offsetofはために私は、テンプレートパラメータを渡すことはできません。グラム++
invalid access to non-static data member 'SomeClass::t' of NULL object
(perhaps the 'offsetof' macro was used incorrectly)
ここではどのような私の使用方法のルックスですがlike:
template<typename T> class SomeClass { T t; };
...
offsetof(SomeClass, t); //warning: invalid access to non-static data member 'SomeClass::t' of NULL object, (perhaps the 'offsetof' macro was used incorrectly)
__builtin_offsetofを使用して同じエラーが発生します。何か案は?
おかげ