std::basic_filebuf<CharT,Traits>::overflow

Writes some data from the put area to the associated character sequence (to the file).

# Declarations

protected:
virtual int_type overflow ( int_type c = Traits::eof() );

# Return value

Traits::not_eof(c) to indicate success or Traits::eof() to indicate failure.

# Example

This section is incompleteReason: no example

# See also