OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::DefaultValidate< IntLiteral > Struct Template Reference

#include <ParserNode.h>

Public Member Functions

template<typename T >
decltype(auto) operator() (T t)
 

Detailed Description

template<>
struct Parser::DefaultValidate< IntLiteral >

Definition at line 2167 of file ParserNode.h.

Member Function Documentation

template<typename T >
decltype(auto) Parser::DefaultValidate< IntLiteral >::operator() ( t)
inline

Definition at line 2169 of file ParserNode.h.

2169  {
2170  const std::string property_name(boost::to_upper_copy<std::string>(*t->get_name()));
2171  if (!dynamic_cast<const IntLiteral*>(t->get_value())) {
2172  throw std::runtime_error(property_name + " must be an integer literal.");
2173  }
2174  const auto val = static_cast<const IntLiteral*>(t->get_value())->get_intval();
2175  if (val <= 0) {
2176  throw std::runtime_error(property_name + " must be a positive number.");
2177  }
2178  return val;
2179  }

The documentation for this struct was generated from the following file: