diff --git a/src/AddIns/Misc/Profiler/Frontend/AddIn/AddIn.csproj b/src/AddIns/Misc/Profiler/Frontend/AddIn/AddIn.csproj index c5d8d505f1..1404c17906 100644 --- a/src/AddIns/Misc/Profiler/Frontend/AddIn/AddIn.csproj +++ b/src/AddIns/Misc/Profiler/Frontend/AddIn/AddIn.csproj @@ -13,7 +13,7 @@ 4 false OnBuildSuccess - ..\..\bin\ + ..\..\bin Program $(SharpDevelopBinPath)\SharpDevelop.exe /addindir:$(MSBuildProjectDirectory)\$(OutputPath) @@ -43,15 +43,19 @@ ..\..\..\..\..\..\bin\ICSharpCode.Core.dll + False ..\..\..\..\..\..\bin\ICSharpCode.Core.Presentation.dll + False ..\..\..\..\..\..\bin\ICSharpCode.SharpDevelop.dll + False ..\..\..\..\..\..\bin\ICSharpCode.SharpDevelop.Dom.dll + False diff --git a/src/AddIns/Misc/Profiler/Hook/allocator.cpp b/src/AddIns/Misc/Profiler/Hook/allocator.cpp index 8c1a68071b..7d050084b2 100644 --- a/src/AddIns/Misc/Profiler/Hook/allocator.cpp +++ b/src/AddIns/Misc/Profiler/Hook/allocator.cpp @@ -64,6 +64,7 @@ void* fastAllocator::malloc(size_t bytes) } } +#pragma warning(disable : 4100) void fastAllocator::free(void* memory, size_t bytes) { assert(memory != nullptr); @@ -72,6 +73,7 @@ void fastAllocator::free(void* memory, size_t bytes) assert(((size_t*)memory)[-1] == bytes); #endif } +#pragma warning(default : 4100) template void freeListAllocator::initialize(void* pos, void* endPos) { diff --git a/src/AddIns/Misc/Profiler/doc/Documentation.chm b/src/AddIns/Misc/Profiler/doc/Documentation.chm deleted file mode 100644 index 272cebc484..0000000000 Binary files a/src/AddIns/Misc/Profiler/doc/Documentation.chm and /dev/null differ