[xiph-commits] r8669 - in trunk/oggdsf/src: lib/core/ogg/libVorbisCommentDotNET tools/OOOggDump tools/oggChainSplitter

illiminable at motherfish-iii.xiph.org illiminable at motherfish-iii.xiph.org
Fri Jan 7 19:18:37 PST 2005


Author: illiminable
Date: 2005-01-07 19:18:36 -0800 (Fri, 07 Jan 2005)
New Revision: 8669

Modified:
   trunk/oggdsf/src/lib/core/ogg/libVorbisCommentDotNET/libVorbisCommentDotNET.vcproj
   trunk/oggdsf/src/tools/OOOggDump/OOOggDump.cpp
   trunk/oggdsf/src/tools/oggChainSplitter/oggChainSplitter.cpp
Log:
* More warnings gone.

Modified: trunk/oggdsf/src/lib/core/ogg/libVorbisCommentDotNET/libVorbisCommentDotNET.vcproj
===================================================================
--- trunk/oggdsf/src/lib/core/ogg/libVorbisCommentDotNET/libVorbisCommentDotNET.vcproj	2005-01-07 23:51:57 UTC (rev 8668)
+++ trunk/oggdsf/src/lib/core/ogg/libVorbisCommentDotNET/libVorbisCommentDotNET.vcproj	2005-01-08 03:18:36 UTC (rev 8669)
@@ -31,7 +31,8 @@
 				UsePrecompiledHeader="3"
 				WarningLevel="4"
 				DebugInformationFormat="3"
-				CallingConvention="2"/>
+				CallingConvention="2"
+				DisableSpecificWarnings="4251"/>
 			<Tool
 				Name="VCCustomBuildTool"/>
 			<Tool
@@ -89,7 +90,8 @@
 				UsePrecompiledHeader="3"
 				WarningLevel="3"
 				DebugInformationFormat="3"
-				CallingConvention="2"/>
+				CallingConvention="2"
+				DisableSpecificWarnings="4251"/>
 			<Tool
 				Name="VCCustomBuildTool"/>
 			<Tool
@@ -150,7 +152,8 @@
 				UsePrecompiledHeader="3"
 				WarningLevel="3"
 				DebugInformationFormat="3"
-				CallingConvention="2"/>
+				CallingConvention="2"
+				DisableSpecificWarnings="4251"/>
 			<Tool
 				Name="VCCustomBuildTool"/>
 			<Tool
@@ -211,7 +214,8 @@
 				UsePrecompiledHeader="3"
 				WarningLevel="3"
 				DebugInformationFormat="3"
-				CallingConvention="2"/>
+				CallingConvention="2"
+				DisableSpecificWarnings="4251"/>
 			<Tool
 				Name="VCCustomBuildTool"/>
 			<Tool

Modified: trunk/oggdsf/src/tools/OOOggDump/OOOggDump.cpp
===================================================================
--- trunk/oggdsf/src/tools/OOOggDump/OOOggDump.cpp	2005-01-07 23:51:57 UTC (rev 8668)
+++ trunk/oggdsf/src/tools/OOOggDump/OOOggDump.cpp	2005-01-08 03:18:36 UTC (rev 8669)
@@ -42,7 +42,7 @@
 unsigned long bytePos;
 
 //This will be called by the callback
-bool pageCB(OggPage* inOggPage, void *inUserData /* ignored */) {
+bool pageCB(OggPage* inOggPage, void*  /* inUserData  ignored */) {
 	cout<<"Page Location : "<<bytePos;
 	bytePos += inOggPage->pageSize();
 	cout<<" to "<<bytePos<<endl;

Modified: trunk/oggdsf/src/tools/oggChainSplitter/oggChainSplitter.cpp
===================================================================
--- trunk/oggdsf/src/tools/oggChainSplitter/oggChainSplitter.cpp	2005-01-07 23:51:57 UTC (rev 8668)
+++ trunk/oggdsf/src/tools/oggChainSplitter/oggChainSplitter.cpp	2005-01-08 03:18:36 UTC (rev 8669)
@@ -72,7 +72,7 @@
 
 		size_t locSlashPos = outFileName.find_last_of('\\');
 		if (locSlashPos == string::npos) {
-			locSlashPos == -1;
+			locSlashPos = -1;
 		}
 		size_t locDotPos = outFileName.find_last_of('.');
 
@@ -101,7 +101,7 @@
 	return true;
 }
 //This will be called by the callback
-bool pageCB(OggPage* inOggPage, void *inUserData /* ignored */) {
+bool pageCB(OggPage* inOggPage, void*  /* inUserData  ignored */) {
 	bool retVal = false;
 	if (inStream == false) {
 		//Not in the middle of a stream



More information about the commits mailing list