From f834363dc3d5f2b5c46ed051091999bd517da83c Mon Sep 17 00:00:00 2001 From: nds Date: Thu, 15 Aug 2019 08:48:14 +0300 Subject: [PATCH] 0030901: Visualization - OSD_MemInfo moving memory computation out of the constructor --- src/Draw/Draw_BasicCommands.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Draw/Draw_BasicCommands.cxx b/src/Draw/Draw_BasicCommands.cxx index 96f0ba634b..a5d1f332dd 100644 --- a/src/Draw/Draw_BasicCommands.cxx +++ b/src/Draw/Draw_BasicCommands.cxx @@ -763,7 +763,7 @@ static int dmeminfo (Draw_Interpretor& theDI, const char** theArgVec) { OSD_MemInfo aMemInfo; - aMemTool.Update(); + aMemInfo.Update(); if (theArgNb <= 1) { theDI << aMemInfo.ToString(); -- 2.39.5