为什么在将unichar转换为vala中的字符串时会收到编译警告?

时间:2012-05-18 22:44:30

标签: unicode utf-8 vala

这是一个展示问题的简短程序:

void main(string[] args)
{
    unichar c = 'a';
    string str_from_to_string = c.to_string(); // Warning
    stdout.printf("Converted by unichar.to_string: \"%s\"\n", str_from_to_string);
}

这也会导致相同的警告:

void main(string[] args)
{
    unichar c = 'a';
    string str_from_template = @"$c"; // Warning
    stdout.printf("Converted by string template: \"%s\"\n", str_from_template);
}

这是我得到的警告:

/home/mpiroc/Desktop/unicode_to_string/unicode_to_string.vala.c: In function ‘g_unichar_to_string’:
/home/mpiroc/Desktop/unicode_to_string/unicode_to_string.vala.c:26:2: warning: passing argument 2 of ‘g_unichar_to_utf8’ discards ‘const’ qualifier from pointer target type [enabled by default]
/usr/include/glib-2.0/glib/gunicode.h:684:11: note: expected ‘gchar *’ but argument is of type ‘const gchar *’

以下是警告中提到的生成的c代码:

 18 static gchar* g_unichar_to_string (gunichar self) {
 19     gchar* result = NULL;
 20     gchar* _tmp0_ = NULL;
 21     gchar* str;
 22     const gchar* _tmp1_;
 23     _tmp0_ = g_new0 (gchar, 7);
 24     str = (gchar*) _tmp0_;
 25     _tmp1_ = str;
 26     g_unichar_to_utf8 (self, _tmp1_);
 27     result = str;
 28     return result;
 29 }

好像_tmp_似乎不应该标记为const,但这是由valac生成的,不是由我直接编写的。难道我做错了什么?或者这是valac中的错误?代码按预期运行,但我尽可能避免警告。

2 个答案:

答案 0 :(得分:1)

Vala编译器不会生成临时变量const。您可以安全地忽略有关const - ness。

的警告

答案 1 :(得分:1)

Add --disable-warnings command-line option

IIRC Vala编译器也可以使用--disable-warnigs命令行选项。

编辑:

gcc commandline options

抱歉,Valac是转发器,所以一旦valac --ccode输出,然后 需要运行gcc或其他编译器。

$ valac --ccode unicode_to_string.vala
$ gcc -o unicode_to_string -w unicode_to_string.c `pkg-config --libs --cflags gobject-2.0`