blob: 3988048e2a8d8f80289607fcaa9b475682c4e939 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PYTHONIC_BUILTIN_WARNING_HPP
#define PYTHONIC_BUILTIN_WARNING_HPP
#include "pythonic/include/builtins/Warning.hpp"
#include "pythonic/types/exceptions.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
PYTHONIC_EXCEPTION_IMPL(Warning)
}
PYTHONIC_NS_END
#endif
|