Index: trunk/ab5.0/abdev/compiler_x86/CParameter.cpp
===================================================================
--- trunk/ab5.0/abdev/compiler_x86/CParameter.cpp	(revision 522)
+++ trunk/ab5.0/abdev/compiler_x86/CParameter.cpp	(revision 523)
@@ -6,5 +6,5 @@
 #include "opcode.h"
 
-int ParamImpl::NewTempParameters( const string &procName, const Parameters &params, int SecondParmNum ){
+int ParamImpl::NewTempParameters( const std::string &procName, const Parameters &params, int SecondParmNum ){
 	if( SecondParmNum == -1 ) SecondParmNum = (int)params.size();
 
@@ -174,5 +174,5 @@
 }
 
-int ParamImpl::SetParameter( const string &procName, const Parameters &params, int SecondParmNum, const UserProc *pUserProc ){
+int ParamImpl::SetParameter( const std::string &procName, const Parameters &params, int SecondParmNum, const UserProc *pUserProc ){
 	if( SecondParmNum == -1 ) SecondParmNum = (int)params.size();
 
Index: trunk/ab5.0/abdev/compiler_x86/Compile_Calc.cpp
===================================================================
--- trunk/ab5.0/abdev/compiler_x86/Compile_Calc.cpp	(revision 522)
+++ trunk/ab5.0/abdev/compiler_x86/Compile_Calc.cpp	(revision 523)
@@ -611,5 +611,5 @@
 	if( varType.IsObject() && compiler.GetObjectModule().meta.GetBlittableTypes().IsExist( calcType ) ){
 		// Blittable型をオブジェクトとして扱う
-		vector<const UserProc *> userProcs;
+		std::vector<const UserProc *> userProcs;
 		compiler.GetObjectModule().meta.GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );
 		if( userProcs.size() != 1 ){
Index: trunk/ab5.0/abdev/compiler_x86/Compile_Func.cpp
===================================================================
--- trunk/ab5.0/abdev/compiler_x86/Compile_Func.cpp	(revision 522)
+++ trunk/ab5.0/abdev/compiler_x86/Compile_Func.cpp	(revision 523)
@@ -524,5 +524,5 @@
 	}
 }
-void Opcode_Func_SizeOf( const string &typeName ){
+void Opcode_Func_SizeOf( const std::string &typeName ){
 	Type tempType;
 	if( !compiler.StringToType( typeName, tempType ) ){
Index: trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp
===================================================================
--- trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp	(revision 522)
+++ trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp	(revision 523)
@@ -349,6 +349,6 @@
 #ifdef _DEBUG
 	{
-		ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\middle_code.txt" ).c_str() );
-		ofs << basbuf << endl;
+		std::ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\middle_code.txt" ).c_str() );
+		ofs << basbuf << std::endl;
 		ofs.close();
 	}
Index: trunk/ab5.0/abdev/compiler_x86/NumOpe.cpp
===================================================================
--- trunk/ab5.0/abdev/compiler_x86/NumOpe.cpp	(revision 522)
+++ trunk/ab5.0/abdev/compiler_x86/NumOpe.cpp	(revision 523)
@@ -255,5 +255,5 @@
 	// 動的メソッドを検索
 	///////////////////////////////////////////////////////////////////
-	vector<const UserProc *> userProcs;
+	std::vector<const UserProc *> userProcs;
 
 	char methodName[VN_SIZE], lpPtrOffset[VN_SIZE], parameter[VN_SIZE], dummy[1];
Index: trunk/ab5.0/abdev/compiler_x86/Opcode.h
===================================================================
--- trunk/ab5.0/abdev/compiler_x86/Opcode.h	(revision 522)
+++ trunk/ab5.0/abdev/compiler_x86/Opcode.h	(revision 523)
@@ -197,11 +197,11 @@
 
 	void ApplyDefaultParameters( const Parameters &params );
-	bool ErrorCheck( const string &procName, const Parameters &params, int SecondParmNum = -1 );
+	bool ErrorCheck( const std::string &procName, const Parameters &params, int SecondParmNum = -1 );
 	void MacroParameterSupport( const Parameters &params );
 	void SetStructParameter( const Type &baseType, const char *expression );
-	int SetParameter( const string &procName, const Parameters &params, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
+	int SetParameter( const std::string &procName, const Parameters &params, int SecondParmNum = -1, const UserProc *pUserProc = NULL );
 
 	//一時オブジェクトパラメータの生成と破棄
-	int NewTempParameters( const string &procName, const Parameters &params, int SecondParmNum = -1 );
+	int NewTempParameters( const std::string &procName, const Parameters &params, int SecondParmNum = -1 );
 	void DeleteTempParameters();
 };
