commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] 03/12: pmt: making uint64_t sugar more frie


From: git
Subject: [Commit-gnuradio] [gnuradio] 03/12: pmt: making uint64_t sugar more friendly
Date: Fri, 23 May 2014 17:35:56 +0000 (UTC)

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

jcorgan pushed a commit to branch master
in repository gnuradio.

commit bdd6ad4cf9f26b2619073d5fce6c395687a594fd
Author: Tim O'Shea <address@hidden>
Date:   Mon May 19 14:11:13 2014 -0400

    pmt: making uint64_t sugar more friendly
---
 gnuradio-runtime/include/pmt/pmt_sugar.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnuradio-runtime/include/pmt/pmt_sugar.h 
b/gnuradio-runtime/include/pmt/pmt_sugar.h
index 743c5b1..424f85c 100644
--- a/gnuradio-runtime/include/pmt/pmt_sugar.h
+++ b/gnuradio-runtime/include/pmt/pmt_sugar.h
@@ -53,14 +53,14 @@ namespace pmt {
 
   //! Make pmt uint64
   static inline pmt_t
-  mp(uint64_t x){
+  mp(long unsigned x){
     return from_uint64(x);
   }
 
-  //! Make pmt long
+  //! Make pmt uint64
   static inline pmt_t
   mp(long long unsigned x){
-    return from_long(x);
+    return from_uint64(x);
   }
 
   //! Make pmt long



reply via email to

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