Skip to content
Snippets Groups Projects
Commit 29738298 authored by Rene Brun's avatar Rene Brun
Browse files

Fix a side-effect of the changes in TStorage::ObjectDealloc.

Fix coding convention.


git-svn-id: http://root.cern.ch/svn/root/trunk@17001 27541ba8-7e3a-0410-8455-c3a389f83636
parent 78bf05be
No related merge requests found
// @(#)root/base:$Name: $:$Id: TStorage.cxx,v 1.24 2006/05/19 07:30:04 brun Exp $
// @(#)root/base:$Name: $:$Id: TStorage.cxx,v 1.25 2006/11/30 23:19:47 pcanal Exp $
// Author: Fons Rademakers 29/07/95
/*************************************************************************
......@@ -352,8 +352,8 @@ void TStorage::ObjectDealloc(void *vp)
#ifndef NOCINT
// to handle delete with placement called via CINT
long gvp = G__getgvp();
if ((long)vp == gvp && gvp != G__PVOID)
Long_t gvp = G__getgvp();
if ((Long_t)vp == gvp && gvp != G__PVOID)
return;
#endif
::operator delete(vp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment