commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 02/07: Make compilers happy by adding in a


From: git
Subject: [Commit-gnuradio] [gnuradio] 02/07: Make compilers happy by adding in a proper return instruction to the pycallback_object fall-through converter, even though it will never actually be issued.
Date: Mon, 31 Mar 2014 18:04:31 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch maint
in repository gnuradio.

commit 95e8c6c597da41edfdda1190d2c0e0cdeedf84bd
Author: Michael Dickens <address@hidden>
Date:   Mon Mar 24 18:03:11 2014 -0400

    Make compilers happy by adding in a proper return instruction to the 
pycallback_object fall-through converter, even though it will never actually be 
issued.
---
 gnuradio-runtime/include/gnuradio/pycallback_object.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnuradio-runtime/include/gnuradio/pycallback_object.h 
b/gnuradio-runtime/include/gnuradio/pycallback_object.h
index 756067d..709ca0e 100644
--- a/gnuradio-runtime/include/gnuradio/pycallback_object.h
+++ b/gnuradio-runtime/include/gnuradio/pycallback_object.h
@@ -152,6 +152,9 @@ private:
   myType pyCast(PyObject* obj) {
     printf("TYPE NOT IMPLEMENTED!\n");
     assert(0);
+    // the following is to make compilers happy only.
+    myType dummy;
+    return(dummy);
   };
 
   std::vector<boost::any> d_rpc_vars; // container for all RPC variables



reply via email to

[Prev in Thread] Current Thread [Next in Thread]