Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
aa43d9cc
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
aa43d9cc
编写于
9月 04, 2009
作者:
B
Blue Swirl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Shuffle lines to avoid gcc 3 warning about redundant redeclaration
Signed-off-by:
N
Blue Swirl
<
blauwirbel@gmail.com
>
上级
c34ebfdc
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
18 addition
and
18 deletion
+18
-18
qdict.c
qdict.c
+6
-6
qint.c
qint.c
+6
-6
qstring.c
qstring.c
+6
-6
未找到文件。
qdict.c
浏览文件 @
aa43d9cc
...
...
@@ -17,7 +17,12 @@
#include "sys-queue.h"
#include "qemu-common.h"
static
const
QType
qdict_type
;
static
void
qdict_destroy_obj
(
QObject
*
obj
);
static
const
QType
qdict_type
=
{
.
code
=
QTYPE_QDICT
,
.
destroy
=
qdict_destroy_obj
,
};
/**
* qdict_new(): Create a new QDict
...
...
@@ -290,8 +295,3 @@ static void qdict_destroy_obj(QObject *obj)
qemu_free
(
qdict
);
}
static
const
QType
qdict_type
=
{
.
code
=
QTYPE_QDICT
,
.
destroy
=
qdict_destroy_obj
,
};
qint.c
浏览文件 @
aa43d9cc
...
...
@@ -13,7 +13,12 @@
#include "qobject.h"
#include "qemu-common.h"
static
const
QType
qint_type
;
static
void
qint_destroy_obj
(
QObject
*
obj
);
static
const
QType
qint_type
=
{
.
code
=
QTYPE_QINT
,
.
destroy
=
qint_destroy_obj
,
};
/**
* qint_from_int(): Create a new QInt from an int64_t
...
...
@@ -59,8 +64,3 @@ static void qint_destroy_obj(QObject *obj)
assert
(
obj
!=
NULL
);
qemu_free
(
qobject_to_qint
(
obj
));
}
static
const
QType
qint_type
=
{
.
code
=
QTYPE_QINT
,
.
destroy
=
qint_destroy_obj
,
};
qstring.c
浏览文件 @
aa43d9cc
...
...
@@ -13,7 +13,12 @@
#include "qstring.h"
#include "qemu-common.h"
static
const
QType
qstring_type
;
static
void
qstring_destroy_obj
(
QObject
*
obj
);
static
const
QType
qstring_type
=
{
.
code
=
QTYPE_QSTRING
,
.
destroy
=
qstring_destroy_obj
,
};
/**
* qstring_from_str(): Create a new QString from a regular C string
...
...
@@ -66,8 +71,3 @@ static void qstring_destroy_obj(QObject *obj)
qemu_free
(
qs
->
string
);
qemu_free
(
qs
);
}
static
const
QType
qstring_type
=
{
.
code
=
QTYPE_QSTRING
,
.
destroy
=
qstring_destroy_obj
,
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录