ClickHouse/src/Parsers/iostream_debug_helpers.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
351 B
C++
Raw Normal View History

#pragma once
#include <iostream>
namespace DB
{
2018-04-13 20:16:12 +00:00
struct Token;
std::ostream & operator<<(std::ostream & stream, const Token & what);
struct Expected;
std::ostream & operator<<(std::ostream & stream, const Expected & what);
2019-10-28 05:42:51 +00:00
class IAST;
std::ostream & operator<<(std::ostream & stream, const IAST & what);
}
#include <Core/iostream_debug_helpers.h>