Skip to content

Commit

Permalink
Remove a useless semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
mordante committed Jul 13, 2014
1 parent a533a44 commit e83ab1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/variable_info.hpp
Expand Up @@ -70,7 +70,7 @@ template<const variable_info_3_detail::variable_info_3_type vit>
class non_const_variable_info_3 : public variable_info_3<vit>, variable_info_3_detail::enable_if_non_const<vit>::type
{
public:
non_const_variable_info_3(const std::string& name, config& game_vars) : variable_info_3<vit>(name, game_vars) {};
non_const_variable_info_3(const std::string& name, config& game_vars) : variable_info_3<vit>(name, game_vars) {}
~non_const_variable_info_3() {}

/// clears the vale this object points to
Expand Down

0 comments on commit e83ab1b

Please sign in to comment.