diff options
author | Andi Gutmans <andi@php.net> | 2002-03-01 14:27:26 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-03-01 14:27:26 +0000 |
commit | 90bd4539c7f267fc119122b66ef42a74bbc3ccc7 (patch) | |
tree | 0845556daa3e2042b6aba3218e47c845b924bcca /Zend/zend_globals.h | |
parent | d1eea3de9c9a1e92a5cd0813c4608b9defef4927 (diff) | |
download | php-git-90bd4539c7f267fc119122b66ef42a74bbc3ccc7.tar.gz |
- Remove use of C++ reserved words namespace/this
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 3e5dbab7c2..2139e54fcf 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -158,10 +158,10 @@ struct _zend_executor_globals { HashTable *class_table; /* class table */ HashTable *zend_constants; /* constants table */ - zend_class_entry *namespace; + zend_class_entry *scope; zend_class_entry *main_class_ptr; - zval *this; + zval *This; long precision; |