Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 595800
Collapse All | Expand All

(-)qp9.7/src/io_qp.h.old (-4 / +4 lines)
Lines 694-700 Link Here
694
694
695
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
695
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
696
    {
696
    {
697
      return stream->seekp(pos, d);
697
      return !stream->seekp(pos, d).fail();
698
    }
698
    }
699
699
700
  bool put(char ch)
700
  bool put(char ch)
Lines 768-774 Link Here
768
768
769
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
769
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
770
    {
770
    {
771
      return stream.seekp(pos, d);
771
      return !stream.seekp(pos, d).fail();
772
    }
772
    }
773
773
774
  bool put(char ch)
774
  bool put(char ch)
Lines 848-854 Link Here
848
848
849
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
849
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
850
    {
850
    {
851
      return stream.seekp(pos, d);
851
      return !stream.seekp(pos, d).fail();
852
    }
852
    }
853
853
854
  bool put(char ch);
854
  bool put(char ch);
Lines 908-914 Link Here
908
908
909
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
909
  bool seekp(streampos pos, ios::seekdir d = ios::beg)
910
    {
910
    {
911
      return stream.seekp(pos, d);
911
      return !stream.seekp(pos, d).fail();
912
    }
912
    }
913
913
914
  bool put(char ch);
914
  bool put(char ch);

Return to bug 595800