CVSROOT: /cvsroot
Module name: pgsql
Changes by: momjian@postgresql.org 02/06/15 15:30:40
Modified files:
src/interfaces/libpq++: pglobject.cc
Log message:
The method PgLargeObject::LOid() is missing an implementation in the .cc
file.
The program seems to compile ok, but when linking a program that uses
the call,
g++ chokes with an undefined reference error.
If you know how this problem might be fixed, list the solution below:
---------------------------------------------------------------------
I include the code:
Oid PgLargeObject::LOid(){
return pgObject;
}
in the .cc file.
Chris Traylor