Author: dquintana
Date: Mon Jul 24 10:40:55 2017
New Revision: 75394
URL:
http://svn.reactos.org/svn/reactos?rev=75394&view=rev
Log:
[EXPLORER]
[RSHELL]
[NTOBJSHEX]
[BROWSEUI]
[SHELL32]
Get rid of the unused "placement new" operators.
Modified:
trunk/reactos/base/shell/explorer/explorer.cpp
trunk/reactos/base/shell/rshell/misc.cpp
trunk/reactos/dll/shellext/ntobjshex/ntobjshex.cpp
trunk/reactos/dll/shellext/stobject/stobject.cpp
trunk/reactos/dll/win32/browseui/browseui.cpp
trunk/reactos/dll/win32/shell32/shell32.cpp
Modified: trunk/reactos/base/shell/explorer/explorer.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/explor…
==============================================================================
--- trunk/reactos/base/shell/explorer/explorer.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/explorer.cpp [iso-8859-1] Mon Jul 24 10:40:55 2017
@@ -35,11 +35,6 @@
CExplorerModule gModule;
CAtlWinModule gWinModule;
-
-void *operator new (size_t, void *buf)
-{
- return buf;
-}
static VOID InitializeAtlModule(HINSTANCE hInstance, BOOL bInitialize)
{
Modified: trunk/reactos/base/shell/rshell/misc.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/rshell/misc.cpp…
==============================================================================
--- trunk/reactos/base/shell/rshell/misc.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/rshell/misc.cpp [iso-8859-1] Mon Jul 24 10:40:55 2017
@@ -69,11 +69,6 @@
return 0;
}
-void *operator new (size_t, void *buf)
-{
- return buf;
-}
-
class CRShellModule : public CComModule
{
public:
Modified: trunk/reactos/dll/shellext/ntobjshex/ntobjshex.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/ntobjshex/nto…
==============================================================================
--- trunk/reactos/dll/shellext/ntobjshex/ntobjshex.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/ntobjshex/ntobjshex.cpp [iso-8859-1] Mon Jul 24 10:40:55
2017
@@ -17,11 +17,6 @@
HINSTANCE g_hInstance;
CComModule g_Module;
-
-void *operator new (size_t, void *buf)
-{
- return buf;
-}
STDAPI_(BOOL)
DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
Modified: trunk/reactos/dll/shellext/stobject/stobject.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/stobject/stob…
==============================================================================
--- trunk/reactos/dll/shellext/stobject/stobject.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/stobject/stobject.cpp [iso-8859-1] Mon Jul 24 10:40:55
2017
@@ -20,11 +20,6 @@
HINSTANCE g_hInstance;
CComModule g_Module;
-
-void *operator new (size_t, void *buf)
-{
- return buf;
-}
STDAPI_(BOOL)
DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
Modified: trunk/reactos/dll/win32/browseui/browseui.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/browseui/browseu…
==============================================================================
--- trunk/reactos/dll/win32/browseui/browseui.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/browseui/browseui.cpp [iso-8859-1] Mon Jul 24 10:40:55 2017
@@ -147,11 +147,6 @@
CBrowseUIModule gModule;
CAtlWinModule gWinModule;
-void *operator new (size_t, void *buf)
-{
- return buf;
-}
-
/*************************************************************************
* BROWSEUI DllMain
*/
Modified: trunk/reactos/dll/win32/shell32/shell32.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shell32.…
==============================================================================
--- trunk/reactos/dll/win32/shell32/shell32.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/shell32.cpp [iso-8859-1] Mon Jul 24 10:40:55 2017
@@ -313,11 +313,6 @@
*/
HINSTANCE shell32_hInstance;
-void *operator new (size_t, void *buf)
-{
- return buf;
-}
-
/*************************************************************************
* SHELL32 DllMain
*