From: <sja...@us...> - 2003-08-17 20:55:29
|
Update of /cvsroot/binaryphp/binaryphp In directory sc8-pr-cvs1:/tmp/cvs-serv3517 Modified Files: php_var.cpp Log Message: Fix typos. Index: php_var.cpp =================================================================== RCS file: /cvsroot/binaryphp/binaryphp/php_var.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** php_var.cpp 17 Aug 2003 20:13:10 -0000 1.29 --- php_var.cpp 17 Aug 2003 20:38:06 -0000 1.30 *************** *** 55,64 **** { container = str; ! typ.is_string = true; } php_var::php_var(string str) { container = str; ! typ.is_string = true; } php_var::php_var(bool b) --- 55,64 ---- { container = str; ! type.is_string = true; } php_var::php_var(string str) { container = str; ! type.is_string = true; } php_var::php_var(bool b) *************** *** 68,72 **** else container = "0"; ! typ.is_bool = true; } php_var::operator const char*() --- 68,72 ---- else container = "0"; ! type.is_bool = true; } php_var::operator const char*() |