diff options
author | Stanislav Malyshev <stas@php.net> | 2015-01-03 01:22:58 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-01-10 15:07:38 -0800 |
commit | b7a7b1a624c97945c0aaa49d46ae996fc0bdb6bc (patch) | |
tree | 0e09490075ee4f9a75a77ef4168d8ee254c52e5b /Zend/zend.h | |
parent | 773c8b0c092a0e9ad5c5548815bcb9991d54d5c1 (diff) | |
download | php-git-b7a7b1a624c97945c0aaa49d46ae996fc0bdb6bc.tar.gz |
trailing whitespace removal
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index dd04aab63e..da79010eaf 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -5,7 +5,7 @@ | Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ | This source file is subject to version 2.00 of the Zend license, | - | that is bundled with this package in the file LICENSE, and is | + | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.zend.com/license/2_00.txt. | | If you did not receive a copy of the Zend license and are unable to | @@ -79,7 +79,7 @@ ZEND_TSRMLS_CACHE_EXTERN; #ifdef HAVE_NORETURN # if defined(ZEND_WIN32) ZEND_API ZEND_NORETURN void zend_error_noreturn(int type, const char *format, ...); -# else +# else void zend_error_noreturn(int type, const char *format, ...) ZEND_NORETURN; # endif #else @@ -98,13 +98,13 @@ typedef struct _zend_serialize_data zend_serialize_data; typedef struct _zend_unserialize_data zend_unserialize_data; typedef struct _zend_trait_method_reference { - zend_string *method_name; + zend_string *method_name; zend_class_entry *ce; zend_string *class_name; } zend_trait_method_reference; typedef struct _zend_trait_precedence { - zend_trait_method_reference *trait_method; + zend_trait_method_reference *trait_method; union { zend_class_entry *ce; zend_string *class_name; @@ -113,12 +113,12 @@ typedef struct _zend_trait_precedence { typedef struct _zend_trait_alias { zend_trait_method_reference *trait_method; - + /** * name for method to be added */ zend_string *alias; - + /** * modifiers to be set on trait method */ @@ -170,7 +170,7 @@ struct _zend_class_entry { uint32_t num_interfaces; uint32_t num_traits; zend_class_entry **interfaces; - + zend_class_entry **traits; zend_trait_alias **trait_aliases; zend_trait_precedence **trait_precedences; |