From 4bf41e59eab59741e7c188fb5c3e57c10232c87d Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 10 Aug 1999 20:19:59 +0000 Subject: [PATCH] removed inline keyword --- src/libCom/osiTime.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/osiTime.cc b/src/libCom/osiTime.cc index 34a9315f8..ad1a50f24 100644 --- a/src/libCom/osiTime.cc +++ b/src/libCom/osiTime.cc @@ -260,7 +260,7 @@ osiTime::osiTime (const struct tm_nano_sec &tm) // // operator struct timespec () // -inline osiTime::operator struct timespec () const +osiTime::operator struct timespec () const { struct timespec ts; time_t_wrapper ansiTimeTicks; @@ -274,7 +274,7 @@ inline osiTime::operator struct timespec () const // // osiTime (const struct timespec &ts) // -inline osiTime::osiTime (const struct timespec &ts) +osiTime::osiTime (const struct timespec &ts) { this->sec = osiTime::time_tToInternalSec (ts.tv_sec); assert (ts.tv_nsec>=0);