fix compiling errors by using GCC/Clang

This commit is contained in:
Jinhao
2015-07-28 01:53:41 +08:00
parent 396163c1b7
commit 894e7e61c8
11 changed files with 44 additions and 44 deletions

View File

@@ -165,13 +165,13 @@ namespace nana{
return *this;
}
group& group::collocate()
group& group::collocate() throw ()
{
impl_->place_content.collocate();
return *this;
}
group& group::div(const char* div_str)
group& group::div(const char* div_str) throw ()
{
if (div_str)
impl_->usr_div_str = div_str;

View File

@@ -17,6 +17,7 @@
#include <nana/unicode_bidi.hpp>
#include <numeric>
#include <cwctype>
#include <cstring>
#include <set>
#include <algorithm>