Kaydet (Commit) 90fe91b7 authored tarafından Enrico Tröger's avatar Enrico Tröger

Fixed compiler warning.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@894 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 0ecb15ad
......@@ -595,6 +595,7 @@ static gchar *parse_cpp_function_at_line(ScintillaObject *sci, gint tag_line)
first_pos = end = sci_get_position_from_line(sci, tag_line);
max_pos = sci_get_position_from_line(sci, tag_line + 1);
tmp = 0;
// goto the begin of function body
while (end < max_pos &&
(tmp = sci_get_char_at(sci, end)) != '{' &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment