From 1c9e65f71f07c3438ae98ddba6b4563578bf25a0 Mon Sep 17 00:00:00 2001 From: Martin Corino Date: Mon, 1 Jun 2015 11:55:05 +0200 Subject: Fix MSVC integer connversion warning. * TAO/tao/RTCORBA/Thread_Pool.cpp: --- TAO/tao/RTCORBA/Thread_Pool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'TAO/tao/RTCORBA') diff --git a/TAO/tao/RTCORBA/Thread_Pool.cpp b/TAO/tao/RTCORBA/Thread_Pool.cpp index 4b13e1a0b76..e101bb672f5 100644 --- a/TAO/tao/RTCORBA/Thread_Pool.cpp +++ b/TAO/tao/RTCORBA/Thread_Pool.cpp @@ -391,8 +391,8 @@ TAO_Thread_Lane::current_threads (void) const this->lock_, 0); - return (this->static_threads_.thr_count () + - this->dynamic_threads_.thr_count ()); + return static_cast (this->static_threads_.thr_count () + + this->dynamic_threads_.thr_count ()); } -- cgit v1.2.1