forked from boostorg/utility
MWCW fix: added std:: qualifier to memset
[SVN r7923]
This commit is contained in:
@ -196,7 +196,7 @@ struct filler<true>
|
||||
template <typename I, typename T>
|
||||
static void do_fill(I first, I last, T val)
|
||||
{
|
||||
memset(first, val, last-first);
|
||||
std::memset(first, val, last-first);
|
||||
}
|
||||
};
|
||||
|
||||
@ -421,3 +421,4 @@ int main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user