From d4c2d8af7649dde57e7a9089755f2842eed8a34f Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Wed, 15 Sep 1999 20:01:54 -0400 Subject: [PATCH] fix comment From-SVN: r29443 --- gcc/cp/typeck.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index cb024afd091..33f4d58caa3 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -1611,9 +1611,8 @@ expr_sizeof (e) return size_int (1); } /* It's illegal to say `sizeof (X::i)' for `i' a non-static data - member unless you're in a non-static member of X. But, we used - to support this usage, so we still permit it unless we're being - pedantic. [expr.prim] */ + member unless you're in a non-static member of X. So hand off to + resolve_offset_ref. [expr.prim] */ else if (TREE_CODE (e) == OFFSET_REF) e = resolve_offset_ref (e); -- 2.30.2