24 lines
463 B
C++
24 lines
463 B
C++
|
/*
|
||
|
* Copyright (C) 2010 Apple Inc. All rights reserved.
|
||
|
*
|
||
|
* This document is the property of Apple Computer, Inc.
|
||
|
* It is considered confidential and proprietary.
|
||
|
*
|
||
|
* This document may not be reproduced or transmitted in any form,
|
||
|
* in whole or in part, without the express written permission of
|
||
|
* Apple Computer, Inc.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Empty namespace std stubs
|
||
|
*/
|
||
|
namespace std
|
||
|
{
|
||
|
void __throw_bad_alloc()
|
||
|
{}
|
||
|
|
||
|
void __throw_length_error(char const*)
|
||
|
{}
|
||
|
};
|