git-subtree-dir: xo-expression git-subtree-mainline:d0f5ccc1cegit-subtree-split:5ac3c03a0c
14 lines
311 B
C++
14 lines
311 B
C++
/* @file GeneralizedExpression.cpp */
|
|
|
|
#include "GeneralizedExpression.hpp"
|
|
|
|
namespace xo {
|
|
namespace ast {
|
|
std::string
|
|
GeneralizedExpression::display_string() const {
|
|
return tostr(*this);
|
|
}
|
|
} /*namespace ast*/
|
|
} /*namespace xo*/
|
|
|
|
/* end GeneralizedExpression.cpp */
|