From 31c5d829c9f7bf06785e064284425fd23b3292c5 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 14 Nov 2005 13:39:02 +0000 Subject: [PATCH] Don't mark inline what is defined in the source file, but used from other compilation units too. gcc 4 is quite consequent and doesn't generate non-inlined code for such a function. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14912 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/TermView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/terminal/TermView.h b/src/apps/terminal/TermView.h index f11caefa69..fcb7f31e7a 100644 --- a/src/apps/terminal/TermView.h +++ b/src/apps/terminal/TermView.h @@ -178,7 +178,7 @@ public: // void UpdateSIGWINCH(); void DeviceStatusReport (int); - inline void UpdateLine (void); + void UpdateLine (void); void ScrollScreen (void); void ScrollScreenDraw (void); void GetFrameSize (float *width, float *height);