mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix warning: for clang
This commit is contained in:
parent
baf8995e81
commit
c22735b212
2 changed files with 12 additions and 2 deletions
|
@ -79,7 +79,7 @@ namespace sprout {
|
|||
typedef sprout::detail::string_construct_access<T, (M - 1) + N, Traits> access_type;
|
||||
return access_type::raw_construct(
|
||||
lsize + rsize,
|
||||
(Indexes < lsize ? lhs[Indexes]
|
||||
(Indexes < lsize ? *(lhs + Indexes)
|
||||
: Indexes < lsize + rsize ? rhs[Indexes - lsize]
|
||||
: T()
|
||||
)...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue