The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
ParsersStandardSingle.cpp File Reference
#include <Gaudi/Parsers/CommonParsers.h>
#include <Gaudi/Parsers/Factory.h>
#include <string>
#include <string_view>
Include dependency graph for ParsersStandardSingle.cpp:

Go to the source code of this file.

Macros

#define PARSERS_DEF_FOR_SINGLE(Type)
 @fixme workaround for a warning in a Boost spirit header
 

Macro Definition Documentation

◆ PARSERS_DEF_FOR_SINGLE

#define PARSERS_DEF_FOR_SINGLE ( Type)
Value:
StatusCode Gaudi::Parsers::parse( Type& result, std::string_view input ) { \
return Gaudi::Parsers::parse_( result, input ); \
}
This class is used for returning status codes from appropriate routines.
Definition StatusCode.h:64
StatusCode parse(GaudiUtils::HashMap< K, V > &result, std::string_view input)
Basic parser for the types of HashMap used in DODBasicMapper.
StatusCode parse_(ResultT &result, std::string_view input)
Definition Factory.h:26

@fixme workaround for a warning in a Boost spirit header

include/boost/spirit/.../real_impl.hpp:337:45: warning: 'n' may be used uninitialized [-Wmaybe-uninitialized]
337 | traits::assign_to(traits::negate(neg, n), attr);
| ~~~~~~~~~~~~~~^~~~~~~~

Definition at line 26 of file ParsersStandardSingle.cpp.

26#define PARSERS_DEF_FOR_SINGLE( Type ) \
27 StatusCode Gaudi::Parsers::parse( Type& result, std::string_view input ) { \
28 return Gaudi::Parsers::parse_( result, input ); \
29 }