Merge lp:~widelands-dev/widelands/silence_Wpedantic into lp:widelands

Proposed by Tino
Status: Merged
Merged at revision: 7007
Proposed branch: lp:~widelands-dev/widelands/silence_Wpedantic
Merge into: lp:widelands
Diff against target: 655 lines (+71/-71)
47 files modified
src/editor/ui_menus/editor_main_menu_load_map.h (+1/-1)
src/graphic/render/gamerenderer.h (+1/-1)
src/graphic/render/minimaprenderer.h (+1/-1)
src/graphic/rendertarget.h (+1/-1)
src/graphic/text/rt_errors.h (+9/-9)
src/graphic/text/rt_parse.cc (+1/-1)
src/graphic/text/rt_render.cc (+1/-1)
src/graphic/text/rt_render.h (+1/-1)
src/io/filesystem/disk_filesystem.cc (+2/-2)
src/machdep.h (+1/-1)
src/map_generator.cc (+1/-1)
src/map_io/one_world_legacy_lookup_table.cc (+1/-1)
src/map_io/widelands_map_allowed_building_types_data_packet.h (+1/-1)
src/map_io/widelands_map_allowed_worker_types_data_packet.h (+1/-1)
src/map_io/widelands_map_exploration_data_packet.h (+1/-1)
src/map_io/widelands_map_flag_data_packet.h (+1/-1)
src/map_io/widelands_map_flagdata_data_packet.h (+1/-1)
src/map_io/widelands_map_heights_data_packet.h (+1/-1)
src/map_io/widelands_map_node_ownership_data_packet.h (+1/-1)
src/map_io/widelands_map_objective_data_packet.h (+1/-1)
src/map_io/widelands_map_player_position_data_packet.h (+1/-1)
src/map_io/widelands_map_players_messages_data_packet.h (+1/-1)
src/map_io/widelands_map_players_view_data_packet.h (+1/-1)
src/map_io/widelands_map_road_data_packet.h (+1/-1)
src/map_io/widelands_map_roaddata_data_packet.h (+1/-1)
src/map_io/widelands_map_scripting_data_packet.h (+1/-1)
src/map_io/widelands_map_version_data_packet.h (+1/-1)
src/scripting/lua_bases.cc (+1/-1)
src/scripting/lua_bases.h (+1/-1)
src/scripting/lua_editor.cc (+1/-1)
src/scripting/lua_editor.h (+1/-1)
src/scripting/lua_game.cc (+1/-1)
src/scripting/lua_game.h (+2/-2)
src/scripting/lua_globals.h (+1/-1)
src/scripting/lua_map.cc (+15/-15)
src/scripting/lua_path.h (+1/-1)
src/scripting/lua_root.cc (+1/-1)
src/scripting/lua_root.h (+1/-1)
src/scripting/lua_ui.cc (+1/-1)
src/scripting/lua_ui.h (+1/-1)
src/ui_basic/tabpanel.h (+1/-1)
src/ui_fsmenu/loadgame.h (+1/-1)
src/wui/encyclopedia_window.h (+1/-1)
src/wui/game_message_menu.h (+1/-1)
src/wui/general_statistics_menu.cc (+1/-1)
src/wui/plot_area.cc (+1/-1)
src/wui/waresqueuedisplay.cc (+1/-1)
To merge this branch: bzr merge lp:~widelands-dev/widelands/silence_Wpedantic
Reviewer Review Type Date Requested Status
SirVer Approve
Review via email: mp+224179@code.launchpad.net

Description of the change

Removes all extra ';' to silence -Wpedantic

To post a comment you must log in.
Revision history for this message
SirVer (sirver) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/editor/ui_menus/editor_main_menu_load_map.h'
2--- src/editor/ui_menus/editor_main_menu_load_map.h 2014-03-01 12:35:59 +0000
3+++ src/editor/ui_menus/editor_main_menu_load_map.h 2014-06-23 16:45:24 +0000
4@@ -29,7 +29,7 @@
5 template <typename T> struct Listselect;
6 struct Textarea;
7 struct Multiline_Textarea;
8-};
9+}
10
11 /**
12 * Choose a filename and save your brand new created map
13
14=== modified file 'src/graphic/render/gamerenderer.h'
15--- src/graphic/render/gamerenderer.h 2013-09-22 18:01:36 +0000
16+++ src/graphic/render/gamerenderer.h 2014-06-23 16:45:24 +0000
17@@ -27,7 +27,7 @@
18 namespace Widelands {
19 class Player;
20 class Editor_Game_Base;
21-};
22+}
23
24 class RenderTarget;
25
26
27=== modified file 'src/graphic/render/minimaprenderer.h'
28--- src/graphic/render/minimaprenderer.h 2013-10-13 10:05:51 +0000
29+++ src/graphic/render/minimaprenderer.h 2014-06-23 16:45:24 +0000
30@@ -27,7 +27,7 @@
31 namespace Widelands {
32 class Player;
33 class Editor_Game_Base;
34-};
35+}
36
37 /**
38 * This class renders the minimap.
39
40=== modified file 'src/graphic/rendertarget.h'
41--- src/graphic/rendertarget.h 2014-06-07 16:29:05 +0000
42+++ src/graphic/rendertarget.h 2014-06-23 16:45:24 +0000
43@@ -32,7 +32,7 @@
44
45 namespace Widelands {
46 class Player;
47-};
48+}
49
50 /**
51 * This class represents anything that can be rendered to.
52
53=== modified file 'src/graphic/text/rt_errors.h'
54--- src/graphic/text/rt_errors.h 2014-06-18 14:23:22 +0000
55+++ src/graphic/text/rt_errors.h 2014-06-23 16:45:24 +0000
56@@ -40,18 +40,18 @@
57 name(std::string msg) : Exception(msg) {} \
58 };
59
60-DEF_ERR(AttributeNotFound);
61-DEF_ERR(BadFont);
62-DEF_ERR(BadImage);
63-DEF_ERR(EOT);
64-DEF_ERR(InvalidColor);
65-DEF_ERR(RenderError);
66-DEF_ERR(SyntaxError);
67-DEF_ERR(WidthTooSmall);
68+DEF_ERR(AttributeNotFound)
69+DEF_ERR(BadFont)
70+DEF_ERR(BadImage)
71+DEF_ERR(EOT)
72+DEF_ERR(InvalidColor)
73+DEF_ERR(RenderError)
74+DEF_ERR(SyntaxError)
75+DEF_ERR(WidthTooSmall)
76
77 #undef DEF_ERR
78
79
80-};
81+}
82
83 #endif /* end of include guard: RT_ERRORS_H */
84
85=== modified file 'src/graphic/text/rt_parse.cc'
86--- src/graphic/text/rt_parse.cc 2014-06-18 14:23:22 +0000
87+++ src/graphic/text/rt_parse.cc 2014-06-23 16:45:24 +0000
88@@ -357,6 +357,6 @@
89
90 IParser * setup_parser() {
91 return new Parser();
92-};
93+}
94
95 }
96
97=== modified file 'src/graphic/text/rt_render.cc'
98--- src/graphic/text/rt_render.cc 2014-06-18 15:33:04 +0000
99+++ src/graphic/text/rt_render.cc 2014-06-23 16:45:24 +0000
100@@ -1004,4 +1004,4 @@
101 return new Renderer(image_cache, surface_cache, fl, setup_parser());
102 }
103
104-};
105+}
106
107=== modified file 'src/graphic/text/rt_render.h'
108--- src/graphic/text/rt_render.h 2014-06-18 14:23:22 +0000
109+++ src/graphic/text/rt_render.h 2014-06-23 16:45:24 +0000
110@@ -102,6 +102,6 @@
111
112 // Setup a renderer, takes ownership of fl but of nothing else.
113 IRenderer* setup_renderer(ImageCache* gr, SurfaceCache*, IFontLoader* fl);
114-};
115+}
116
117 #endif /* end of include guard: RT_RENDER_H */
118
119=== modified file 'src/io/filesystem/disk_filesystem.cc'
120--- src/io/filesystem/disk_filesystem.cc 2014-06-18 13:20:33 +0000
121+++ src/io/filesystem/disk_filesystem.cc 2014-06-23 16:45:24 +0000
122@@ -462,7 +462,7 @@
123 FILE * m_file;
124 };
125
126-};
127+}
128
129 StreamRead * RealFSImpl::OpenStreamRead(const std::string & fname) {
130 const std::string fullname = FS_CanonicalizeName(fname);
131@@ -508,7 +508,7 @@
132 FILE * m_file;
133 };
134
135-};
136+}
137
138 StreamWrite * RealFSImpl::OpenStreamWrite(const std::string & fname) {
139 const std::string fullname = FS_CanonicalizeName(fname);
140
141=== modified file 'src/machdep.h'
142--- src/machdep.h 2013-07-26 19:16:51 +0000
143+++ src/machdep.h 2014-06-23 16:45:24 +0000
144@@ -29,7 +29,7 @@
145 #include "compile_diagnostics.h"
146
147 // Disable this warning for files where we might use these macros.
148-CLANG_DIAG_OFF("-Wself-assign");
149+CLANG_DIAG_OFF("-Wself-assign")
150
151 #if SDL_BYTEORDER == SDL_LIL_ENDIAN
152 #define Little16(x) (x)
153
154=== modified file 'src/map_generator.cc'
155--- src/map_generator.cc 2014-06-21 10:24:12 +0000
156+++ src/map_generator.cc 2014-06-23 16:45:24 +0000
157@@ -1168,4 +1168,4 @@
158 // TODO: MapGen: Check out sample map
159 // TODO: MapGen: How to handle height profile in make_blah...
160
161-};
162+}
163
164=== modified file 'src/map_io/one_world_legacy_lookup_table.cc'
165--- src/map_io/one_world_legacy_lookup_table.cc 2014-06-21 10:24:12 +0000
166+++ src/map_io/one_world_legacy_lookup_table.cc 2014-06-23 16:45:24 +0000
167@@ -352,7 +352,7 @@
168 return resource;
169 }
170 return i->second;
171-};
172+}
173
174 std::string RealOneWorldLegacyLookupTable::lookup_terrain(const std::string& terrain) const {
175 const std::map<std::string, std::string>& world_terrains = terrains_.at(old_world_name_);
176
177=== modified file 'src/map_io/widelands_map_allowed_building_types_data_packet.h'
178--- src/map_io/widelands_map_allowed_building_types_data_packet.h 2013-07-26 20:19:36 +0000
179+++ src/map_io/widelands_map_allowed_building_types_data_packet.h 2014-06-23 16:45:24 +0000
180@@ -22,6 +22,6 @@
181
182 #include "map_io/widelands_map_data_packet.h"
183
184-MAP_DATA_PACKET(Map_Allowed_Building_Types_Data_Packet);
185+MAP_DATA_PACKET(Map_Allowed_Building_Types_Data_Packet)
186
187 #endif
188
189=== modified file 'src/map_io/widelands_map_allowed_worker_types_data_packet.h'
190--- src/map_io/widelands_map_allowed_worker_types_data_packet.h 2013-07-26 20:19:36 +0000
191+++ src/map_io/widelands_map_allowed_worker_types_data_packet.h 2014-06-23 16:45:24 +0000
192@@ -24,6 +24,6 @@
193
194 /// If present, this contains all worker types that are allowed to be build
195 /// by players. If absent, all worker types are allowed per default.
196-MAP_DATA_PACKET(Map_Allowed_Worker_Types_Data_Packet);
197+MAP_DATA_PACKET(Map_Allowed_Worker_Types_Data_Packet)
198
199 #endif
200
201=== modified file 'src/map_io/widelands_map_exploration_data_packet.h'
202--- src/map_io/widelands_map_exploration_data_packet.h 2013-07-26 20:19:36 +0000
203+++ src/map_io/widelands_map_exploration_data_packet.h 2014-06-23 16:45:24 +0000
204@@ -22,6 +22,6 @@
205
206 #include "map_io/widelands_map_data_packet.h"
207
208-MAP_DATA_PACKET(Map_Exploration_Data_Packet);
209+MAP_DATA_PACKET(Map_Exploration_Data_Packet)
210
211 #endif
212
213=== modified file 'src/map_io/widelands_map_flag_data_packet.h'
214--- src/map_io/widelands_map_flag_data_packet.h 2013-07-26 20:19:36 +0000
215+++ src/map_io/widelands_map_flag_data_packet.h 2014-06-23 16:45:24 +0000
216@@ -22,6 +22,6 @@
217
218 #include "map_io/widelands_map_data_packet.h"
219
220-MAP_DATA_PACKET(Map_Flag_Data_Packet);
221+MAP_DATA_PACKET(Map_Flag_Data_Packet)
222
223 #endif
224
225=== modified file 'src/map_io/widelands_map_flagdata_data_packet.h'
226--- src/map_io/widelands_map_flagdata_data_packet.h 2013-07-26 20:19:36 +0000
227+++ src/map_io/widelands_map_flagdata_data_packet.h 2014-06-23 16:45:24 +0000
228@@ -22,6 +22,6 @@
229
230 #include "map_io/widelands_map_data_packet.h"
231
232-MAP_DATA_PACKET(Map_Flagdata_Data_Packet);
233+MAP_DATA_PACKET(Map_Flagdata_Data_Packet)
234
235 #endif
236
237=== modified file 'src/map_io/widelands_map_heights_data_packet.h'
238--- src/map_io/widelands_map_heights_data_packet.h 2013-07-26 20:19:36 +0000
239+++ src/map_io/widelands_map_heights_data_packet.h 2014-06-23 16:45:24 +0000
240@@ -22,6 +22,6 @@
241
242 #include "map_io/widelands_map_data_packet.h"
243
244-MAP_DATA_PACKET(Map_Heights_Data_Packet);
245+MAP_DATA_PACKET(Map_Heights_Data_Packet)
246
247 #endif
248
249=== modified file 'src/map_io/widelands_map_node_ownership_data_packet.h'
250--- src/map_io/widelands_map_node_ownership_data_packet.h 2013-07-26 20:19:36 +0000
251+++ src/map_io/widelands_map_node_ownership_data_packet.h 2014-06-23 16:45:24 +0000
252@@ -22,6 +22,6 @@
253
254 #include "map_io/widelands_map_data_packet.h"
255
256-MAP_DATA_PACKET(Map_Node_Ownership_Data_Packet);
257+MAP_DATA_PACKET(Map_Node_Ownership_Data_Packet)
258
259 #endif
260
261=== modified file 'src/map_io/widelands_map_objective_data_packet.h'
262--- src/map_io/widelands_map_objective_data_packet.h 2013-07-26 20:19:36 +0000
263+++ src/map_io/widelands_map_objective_data_packet.h 2014-06-23 16:45:24 +0000
264@@ -22,6 +22,6 @@
265
266 #include "map_io/widelands_map_data_packet.h"
267
268-MAP_DATA_PACKET(Map_Objective_Data_Packet);
269+MAP_DATA_PACKET(Map_Objective_Data_Packet)
270
271 #endif
272
273=== modified file 'src/map_io/widelands_map_player_position_data_packet.h'
274--- src/map_io/widelands_map_player_position_data_packet.h 2013-07-26 20:19:36 +0000
275+++ src/map_io/widelands_map_player_position_data_packet.h 2014-06-23 16:45:24 +0000
276@@ -22,6 +22,6 @@
277
278 #include "map_io/widelands_map_data_packet.h"
279
280-MAP_DATA_PACKET(Map_Player_Position_Data_Packet);
281+MAP_DATA_PACKET(Map_Player_Position_Data_Packet)
282
283 #endif
284
285=== modified file 'src/map_io/widelands_map_players_messages_data_packet.h'
286--- src/map_io/widelands_map_players_messages_data_packet.h 2013-07-26 20:19:36 +0000
287+++ src/map_io/widelands_map_players_messages_data_packet.h 2014-06-23 16:45:24 +0000
288@@ -22,6 +22,6 @@
289
290 #include "map_io/widelands_map_data_packet.h"
291
292-MAP_DATA_PACKET(Map_Players_Messages_Data_Packet);
293+MAP_DATA_PACKET(Map_Players_Messages_Data_Packet)
294
295 #endif
296
297=== modified file 'src/map_io/widelands_map_players_view_data_packet.h'
298--- src/map_io/widelands_map_players_view_data_packet.h 2013-07-26 20:19:36 +0000
299+++ src/map_io/widelands_map_players_view_data_packet.h 2014-06-23 16:45:24 +0000
300@@ -31,6 +31,6 @@
301 /// This information can not be loaded before the terrains, roads, immovables
302 /// and players' vision maps are loaded. The vision maps are completely loaded
303 /// after Map_Bobdata_Data_Packet has been loaded.
304-MAP_DATA_PACKET(Map_Players_View_Data_Packet);
305+MAP_DATA_PACKET(Map_Players_View_Data_Packet)
306
307 #endif
308
309=== modified file 'src/map_io/widelands_map_road_data_packet.h'
310--- src/map_io/widelands_map_road_data_packet.h 2013-07-26 20:19:36 +0000
311+++ src/map_io/widelands_map_road_data_packet.h 2014-06-23 16:45:24 +0000
312@@ -22,6 +22,6 @@
313
314 #include "map_io/widelands_map_data_packet.h"
315
316-MAP_DATA_PACKET(Map_Road_Data_Packet);
317+MAP_DATA_PACKET(Map_Road_Data_Packet)
318
319 #endif
320
321=== modified file 'src/map_io/widelands_map_roaddata_data_packet.h'
322--- src/map_io/widelands_map_roaddata_data_packet.h 2013-07-26 20:19:36 +0000
323+++ src/map_io/widelands_map_roaddata_data_packet.h 2014-06-23 16:45:24 +0000
324@@ -26,6 +26,6 @@
325 * This parses the roads data (where it is, where it belongs to
326 * and so on)
327 */
328-MAP_DATA_PACKET(Map_Roaddata_Data_Packet);
329+MAP_DATA_PACKET(Map_Roaddata_Data_Packet)
330
331 #endif
332
333=== modified file 'src/map_io/widelands_map_scripting_data_packet.h'
334--- src/map_io/widelands_map_scripting_data_packet.h 2013-07-26 20:19:36 +0000
335+++ src/map_io/widelands_map_scripting_data_packet.h 2014-06-23 16:45:24 +0000
336@@ -26,6 +26,6 @@
337 * This packet loads lua scripts from the scripting sub directory.
338 * It also safes them there again.
339 */
340-MAP_DATA_PACKET(Map_Scripting_Data_Packet);
341+MAP_DATA_PACKET(Map_Scripting_Data_Packet)
342
343 #endif
344
345=== modified file 'src/map_io/widelands_map_version_data_packet.h'
346--- src/map_io/widelands_map_version_data_packet.h 2013-09-13 12:46:44 +0000
347+++ src/map_io/widelands_map_version_data_packet.h 2014-06-23 16:45:24 +0000
348@@ -25,6 +25,6 @@
349 /*
350 * This packet contains the version information of the map.
351 */
352-MAP_DATA_PACKET(Map_Version_Data_Packet);
353+MAP_DATA_PACKET(Map_Version_Data_Packet)
354
355 #endif
356
357=== modified file 'src/scripting/lua_bases.cc'
358--- src/scripting/lua_bases.cc 2014-04-21 09:19:14 +0000
359+++ src/scripting/lua_bases.cc 2014-06-23 16:45:24 +0000
360@@ -571,4 +571,4 @@
361 register_class<L_PlayerBase>(L, "bases");
362 }
363
364-};
365+}
366
367=== modified file 'src/scripting/lua_bases.h'
368--- src/scripting/lua_bases.h 2014-06-12 07:22:23 +0000
369+++ src/scripting/lua_bases.h 2014-06-23 16:45:24 +0000
370@@ -113,6 +113,6 @@
371
372 void luaopen_wlbases(lua_State *);
373
374-};
375+}
376
377 #endif
378
379=== modified file 'src/scripting/lua_editor.cc'
380--- src/scripting/lua_editor.cc 2014-06-01 18:00:48 +0000
381+++ src/scripting/lua_editor.cc 2014-06-23 16:45:24 +0000
382@@ -101,4 +101,4 @@
383 lua_pop(L, 1); // Pop the meta table
384 }
385
386-};
387+}
388
389=== modified file 'src/scripting/lua_editor.h'
390--- src/scripting/lua_editor.h 2014-06-12 07:22:23 +0000
391+++ src/scripting/lua_editor.h 2014-06-23 16:45:24 +0000
392@@ -55,7 +55,7 @@
393
394 void luaopen_wleditor(lua_State *);
395
396-};
397+}
398
399
400 #endif
401
402=== modified file 'src/scripting/lua_game.cc'
403--- src/scripting/lua_game.cc 2014-06-21 10:24:12 +0000
404+++ src/scripting/lua_game.cc 2014-06-23 16:45:24 +0000
405@@ -1356,4 +1356,4 @@
406 register_class<L_Message>(L, "game");
407 }
408
409-};
410+}
411
412=== modified file 'src/scripting/lua_game.h'
413--- src/scripting/lua_game.h 2014-06-12 07:22:23 +0000
414+++ src/scripting/lua_game.h 2014-06-23 16:45:24 +0000
415@@ -30,7 +30,7 @@
416 struct Tribe_Descr;
417 class Objective;
418 struct Message;
419-};
420+}
421
422 namespace LuaGame {
423
424@@ -191,4 +191,4 @@
425 void luaopen_wlgame(lua_State *);
426
427 #endif
428-};
429+}
430
431=== modified file 'src/scripting/lua_globals.h'
432--- src/scripting/lua_globals.h 2014-06-12 07:22:23 +0000
433+++ src/scripting/lua_globals.h 2014-06-23 16:45:24 +0000
434@@ -27,4 +27,4 @@
435 void luaopen_globals(lua_State *);
436
437 #endif /* end of include guard: LUA_GLOBALS_H */
438-};
439+}
440
441=== modified file 'src/scripting/lua_map.cc'
442--- src/scripting/lua_map.cc 2014-06-21 10:24:12 +0000
443+++ src/scripting/lua_map.cc 2014-06-23 16:45:24 +0000
444@@ -110,8 +110,8 @@
445 report_error(L, "Invalid " #type ": <%s>", what.c_str()); \
446 return idx; \
447 }
448-GET_INDEX(ware);
449-GET_INDEX(worker);
450+GET_INDEX(ware)
451+GET_INDEX(worker)
452 #undef GET_INDEX
453
454 #define PARSERS(type, btype) \
455@@ -174,8 +174,8 @@
456 } \
457 return rv; \
458 }
459-PARSERS(ware, Ware);
460-PARSERS(worker, Worker);
461+PARSERS(ware, Ware)
462+PARSERS(worker, Worker)
463 #undef PARSERS
464
465 WaresMap count_wares_on_flag_(Flag& f, const Tribe_Descr & tribe) {
466@@ -1798,9 +1798,9 @@
467 return 0; \
468 }
469 // documented in parent class
470-WH_SET(ware, Ware);
471+WH_SET(ware, Ware)
472 // documented in parent class
473-WH_SET(worker, Worker);
474+WH_SET(worker, Worker)
475 #undef WH_SET
476
477 #define WH_GET(type, btype) \
478@@ -1824,9 +1824,9 @@
479 return 1; \
480 }
481 // documented in parent class
482-WH_GET(ware, Ware);
483+WH_GET(ware, Ware)
484 // documented in parent class
485-WH_GET(worker, Worker);
486+WH_GET(worker, Worker)
487 #undef GET
488
489 // documented in parent class
490@@ -2773,12 +2773,12 @@
491 to_lua<L_Field>(L, new L_Field(n.x, n.y)); \
492 return 1; \
493 }
494-GET_X_NEIGHBOUR(rn);
495-GET_X_NEIGHBOUR(ln);
496-GET_X_NEIGHBOUR(trn);
497-GET_X_NEIGHBOUR(tln);
498-GET_X_NEIGHBOUR(bln);
499-GET_X_NEIGHBOUR(brn);
500+GET_X_NEIGHBOUR(rn)
501+GET_X_NEIGHBOUR(ln)
502+GET_X_NEIGHBOUR(trn)
503+GET_X_NEIGHBOUR(tln)
504+GET_X_NEIGHBOUR(bln)
505+GET_X_NEIGHBOUR(brn)
506
507 /* RST
508 .. attribute:: owner
509@@ -3177,4 +3177,4 @@
510 lua_pop(L, 1); // Pop the meta table
511 }
512
513-};
514+}
515
516=== modified file 'src/scripting/lua_path.h'
517--- src/scripting/lua_path.h 2014-06-18 14:23:22 +0000
518+++ src/scripting/lua_path.h 2014-06-23 16:45:24 +0000
519@@ -34,6 +34,6 @@
520
521 void luaopen_path(lua_State *);
522
523-};
524+}
525
526 #endif /* end of include guard: LUA_PATH_H */
527
528=== modified file 'src/scripting/lua_root.cc'
529--- src/scripting/lua_root.cc 2014-06-18 13:20:33 +0000
530+++ src/scripting/lua_root.cc 2014-06-23 16:45:24 +0000
531@@ -495,4 +495,4 @@
532 register_class<L_World>(L, "", false);
533 }
534
535-};
536+}
537
538=== modified file 'src/scripting/lua_root.h'
539--- src/scripting/lua_root.h 2014-06-18 13:20:33 +0000
540+++ src/scripting/lua_root.h 2014-06-23 16:45:24 +0000
541@@ -125,4 +125,4 @@
542 void luaopen_wlroot(lua_State *, bool in_editor);
543
544 #endif
545-};
546+}
547
548=== modified file 'src/scripting/lua_ui.cc'
549--- src/scripting/lua_ui.cc 2014-04-06 14:01:52 +0000
550+++ src/scripting/lua_ui.cc 2014-06-23 16:45:24 +0000
551@@ -780,4 +780,4 @@
552 }
553
554
555-};
556+}
557
558=== modified file 'src/scripting/lua_ui.h'
559--- src/scripting/lua_ui.h 2014-06-12 07:22:23 +0000
560+++ src/scripting/lua_ui.h 2014-06-23 16:45:24 +0000
561@@ -212,6 +212,6 @@
562
563 void luaopen_wlui(lua_State *);
564
565-};
566+}
567
568 #endif
569
570=== modified file 'src/ui_basic/tabpanel.h'
571--- src/ui_basic/tabpanel.h 2014-02-22 18:04:02 +0000
572+++ src/ui_basic/tabpanel.h 2014-06-23 16:45:24 +0000
573@@ -109,6 +109,6 @@
574
575 const Image* m_pic_background; ///< picture used to draw background
576 };
577-};
578+}
579
580 #endif
581
582=== modified file 'src/ui_fsmenu/loadgame.h'
583--- src/ui_fsmenu/loadgame.h 2014-06-10 20:42:45 +0000
584+++ src/ui_fsmenu/loadgame.h 2014-06-23 16:45:24 +0000
585@@ -40,7 +40,7 @@
586 class Game;
587 class Map;
588 class Map_Loader;
589-};
590+}
591 class Image;
592 class RenderTarget;
593 class GameController;
594
595=== modified file 'src/wui/encyclopedia_window.h'
596--- src/wui/encyclopedia_window.h 2014-04-20 21:07:45 +0000
597+++ src/wui/encyclopedia_window.h 2014-06-23 16:45:24 +0000
598@@ -30,7 +30,7 @@
599 namespace Widelands {
600 struct WareDescr;
601 struct Tribe_Descr;
602-};
603+}
604
605 class Interactive_Player;
606
607
608=== modified file 'src/wui/game_message_menu.h'
609--- src/wui/game_message_menu.h 2014-06-08 21:47:45 +0000
610+++ src/wui/game_message_menu.h 2014-06-23 16:45:24 +0000
611@@ -32,7 +32,7 @@
612 namespace Widelands {
613 class Game;
614 struct Message;
615-};
616+}
617 class Interactive_Player;
618
619 /// Shows the not already fulfilled objectives.
620
621=== modified file 'src/wui/general_statistics_menu.cc'
622--- src/wui/general_statistics_menu.cc 2014-06-21 10:24:12 +0000
623+++ src/wui/general_statistics_menu.cc 2014-06-23 16:45:24 +0000
624@@ -330,4 +330,4 @@
625 (i * m_ndatasets + m_selected_information, false);
626 }
627 m_selected_information = id;
628-};
629+}
630
631=== modified file 'src/wui/plot_area.cc'
632--- src/wui/plot_area.cc 2014-06-08 21:47:45 +0000
633+++ src/wui/plot_area.cc 2014-06-23 16:45:24 +0000
634@@ -479,7 +479,7 @@
635 void WUIPlot_Area::show_plot(uint32_t const id, bool const t) {
636 assert(id < m_plotdata.size());
637 m_plotdata[id].showplot = t;
638-};
639+}
640
641 /*
642 * Set sample rate the data uses
643
644=== modified file 'src/wui/waresqueuedisplay.cc'
645--- src/wui/waresqueuedisplay.cc 2014-02-22 18:04:02 +0000
646+++ src/wui/waresqueuedisplay.cc 2014-06-23 16:45:24 +0000
647@@ -273,7 +273,7 @@
648
649 m_igb.game().send_player_set_ware_priority
650 (m_building, m_ware_type, m_ware_index, priority);
651-};
652+}
653
654 /**
655 * One of the buttons to increase or decrease the amount of wares

Subscribers

People subscribed via source and target branches

to status/vote changes: