MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / underflow

Method underflow

src/backward.h:3936–3936  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3934public:
3935 cfile_streambuf(FILE* _sink) : sink(_sink) {}
3936 int_type underflow() override { return traits_type::eof(); }
3937 int_type overflow(int_type ch) override
3938 {
3939 if (traits_type::not_eof(ch) && fputc(ch, sink) != EOF) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected