This commit is contained in:
Bolero-MURAKAMI 2013-09-13 17:22:10 +09:00
parent 350e883d35
commit 88ee58bcf4
80 changed files with 1547 additions and 164 deletions

View file

@ -30,8 +30,10 @@ Examples
auto x = string<8>("homuhomu");
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
x.assign(y);
SPROUT_ASSERT_MSG(x == y, "y is assigned to x.");
int main() {
x.assign(y);
SPROUT_ASSERT_MSG(x == y, "y is assigned to x.");
}
----