1
/*
2
 * Copyright (c) 2012
3
 * Petr Ovtchenkov
4
 *
5
 * This material is provided "as is", with absolutely no warranty expressed
6
 * or implied. Any use is at your own risk.
7
 *
8
 * Permission to use or copy this software for any purpose is hereby granted
9
 * without fee, provided the above notices are retained on all copies.
10
 * Permission to modify the code and to distribute modified code is granted,
11
 * provided the above notices are retained, and a notice that the code was
12
 * modified is included with the above copyright notice.
13
 *
14
 */
15
16
#include "stlport_prefix.h"
17
18
#include <string>
19
#include <memory>
20
21
_STLP_BEGIN_NAMESPACE
22
23
static const string bad_weak_ptr_str( "bad_weak_ptr" );
24
25
bad_weak_ptr::bad_weak_ptr() _STLP_NOEXCEPT :
26
      __Named_exception( bad_weak_ptr_str )
27
{ }
28
29
_STLP_END_NAMESPACE