]> granicus.if.org Git - php/commitdiff
Fix folder mark
authorReeze Xia <reeze@php.net>
Sat, 14 Mar 2015 06:06:57 +0000 (14:06 +0800)
committerReeze Xia <reeze@php.net>
Sat, 14 Mar 2015 06:06:57 +0000 (14:06 +0800)
ext/reflection/php_reflection.c

index 4ab0559edabb591745b3f2b0f42391ea81315337..bed3823a4e7317635efc36fd5f13c6a3286bfed2 100644 (file)
@@ -217,7 +217,7 @@ typedef struct {
        zend_object zo;
 } reflection_object;
 
-static inline reflection_object *reflection_object_from_obj(zend_object *obj) /* {{{ */ {
+static inline reflection_object *reflection_object_from_obj(zend_object *obj) {
        return (reflection_object*)((char*)(obj) - XtOffsetOf(reflection_object, zo));
 }
 
@@ -235,6 +235,7 @@ static zval *_default_load_entry(zval *object, char *name, size_t name_len) /* {
        }
        return value;
 }
+/* }}} */
 
 static void _default_get_entry(zval *object, char *name, int name_len, zval *return_value) /* {{{ */
 {