diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-08-21 04:17:01 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-08-21 04:17:01 +0000 |
commit | e4eff144d6733edd2111e53613904f22cef9a109 (patch) | |
tree | 9d3f38dd676e5c791089fbc3ad956cc493f61a02 /externals/grill/pool | |
parent | ba5b1684b1279115b95e274d1854fb14fe49587e (diff) |
""
svn path=/trunk/; revision=1965
Diffstat (limited to 'externals/grill/pool')
-rw-r--r-- | externals/grill/pool/source/pool.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/externals/grill/pool/source/pool.cpp b/externals/grill/pool/source/pool.cpp index 8773d72c..a4f0805e 100644 --- a/externals/grill/pool/source/pool.cpp +++ b/externals/grill/pool/source/pool.cpp @@ -862,8 +862,10 @@ BL pooldir::LdDirXML(istream &is,I depth,BL mkdir) if(!gettag(is,tag)) break; if(tag == "pool") { - if(tag.type == xmltag::t_start) - LdDirXMLRec(is,depth,mkdir,AtomList()); + if(tag.type == xmltag::t_start) { + AtomList empty; // must be a separate definition for gcc + LdDirXMLRec(is,depth,mkdir,empty); + } else post("pool - pool not initialized yet"); } |