qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] Re: [PATCH 3/3] Introduce QNumber data type


From: Avi Kivity
Subject: [Qemu-devel] Re: [PATCH 3/3] Introduce QNumber data type
Date: Thu, 06 Aug 2009 17:04:50 +0300
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Lightning/1.0pre Thunderbird/3.0b2

On 08/06/2009 04:52 PM, Luiz Capitulino wrote:
+
+typedef struct QNumber {
+    QObject base;
+    union {
+        int n_int;
+        int64_t n_int64;
+    } number;
+} QNumber;

Why not have an int64_t exclusively?

Also, we need floating point support. So probably need to split this into QInt and QFloat.

--
error compiling committee.c: too many arguments to function





reply via email to

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