touched up code

This commit is contained in:
2009-08-21 05:28:03 +00:00
parent b6ca96214a
commit f565bd46cc
9 changed files with 864 additions and 884 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: Awk.cpp 257 2009-08-17 12:10:30Z hyunghwan.chung $
* $Id: Awk.cpp 259 2009-08-20 11:28:03Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -358,9 +358,9 @@ Awk::Value::operator Awk::real_t () const
Awk::Value::operator const Awk::char_t* () const
{
const char_t* ptr;
const Awk::char_t* ptr;
size_t len;
if (getStr (&ptr, &len) <= -1) ptr = QSE_T("");
if (Awk::Value::getStr (&ptr, &len) <= -1) ptr = QSE_T("");
return ptr;
}
@ -1783,5 +1783,4 @@ int Awk::sprintf (awk_t* awk, char_t* buf, size_t size,
/////////////////////////////////
QSE_END_NAMESPACE(QSE)
/////////////////////////////////
/////////////////////////////////