ClickHouse/dbms/src/Parsers/iostream_debug_helpers.h

15 lines
268 B
C++
Raw Normal View History

#pragma once
#include <iostream>
namespace DB
{
class Token;
std::ostream & operator<<(std::ostream & stream, const Token & what);
struct Expected;
std::ostream & operator<<(std::ostream & stream, const Expected & what);
}
#include <Core/iostream_debug_helpers.h>