From c8e1d09cff8c922bd05fa32485ec3fe90a373a40 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 25 Oct 2007 22:36:23 +0000 Subject: [PATCH] Warning fixes git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10041 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/python/pycontainer.swg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/python/pycontainer.swg b/Lib/python/pycontainer.swg index 2f196d7a8..b2908e003 100644 --- a/Lib/python/pycontainer.swg +++ b/Lib/python/pycontainer.swg @@ -453,7 +453,7 @@ namespace swig size_type size() const { - return PySequence_Size(_seq); + return static_cast(PySequence_Size(_seq)); } bool empty() const