From c5e639c1b8eb54e0af46b3a529d0a1cac39f8ded Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Tue, 8 Sep 2009 19:51:39 +0000 Subject: Const-correctness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81249 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/Program.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/System/Win32') diff --git a/lib/System/Win32/Program.inc b/lib/System/Win32/Program.inc index b23fdce..87f9e64 100644 --- a/lib/System/Win32/Program.inc +++ b/lib/System/Win32/Program.inc @@ -35,7 +35,7 @@ Program::~Program() { } } -unsigned Program::GetPid() { +unsigned Program::GetPid() const { HANDLE hProcess = reinterpret_cast(Data_); return GetProcessId(hProcess); } -- cgit v1.1