mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
MWCW fix: added std:: qualifier to memset
[SVN r7923]
This commit is contained in:
parent
0936110741
commit
3cd9f5b623
@ -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()
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user