blob: 1a207cdcdb4e0c2b394756502fc31f6f4e9c167c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "api.h"
namespace MirrorSearch {
void
XmlError::ice_print(std::ostream & s) const
{
s << msg;
}
void
CurlError::ice_print(std::ostream & s) const
{
s << msg;
}
}
|