From: <ci...@us...> - 2002-08-24 02:29:47
|
Update of /cvsroot/decaldev/source/DecalFilters In directory usw-pr-cvs1:/tmp/cvs-serv23297/DecalFilters Modified Files: StdAfx.h Log Message: Additions to make Decal more STL compliant compilation-wise with header header files. This adds in some #includes for <string> and <stdio.h> in the few places where you were getting it for free the DevStudio automagic but should have been including them to begin with. Changes have been tested both with and without STLport (www.stlport.com) in the paths for compilations purposes. No functional code changes have been made just the #include additions. Index: StdAfx.h =================================================================== RCS file: /cvsroot/decaldev/source/DecalFilters/StdAfx.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** StdAfx.h 7 Aug 2002 17:31:40 -0000 1.7 --- StdAfx.h 24 Aug 2002 02:29:43 -0000 1.8 *************** *** 32,35 **** --- 32,36 ---- #include <utility> #include <algorithm> + #include <string> #include "DecalFilters.h" #include "../Include/VSBridge.h" |