repo.or.cz
/
xlqstl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed problems that emerged in list.
[xlqstl.git]
/
string.cxx
blob
b7c6eb64e7a99df6e3a97df09e68d888b909d411
1
#include
"string"
2
#include
"stdexcept"
3
4
namespace
std
{
5
6
template
<
class
T
>
7
void
basic_string
<
T
>::
throw_exc
()
8
{
9
throw
out_of_range
(
"string index out of range"
);
10
}
11
12
}