You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was compiling a program today using your C++ wrapper. At some point of the compilation it complained that ptrdiff_t is unrecognized, so I added #include <cstddef> to ocilib.hpp in order to sort it out.
Hi,
I was compiling a program today using your C++ wrapper. At some point of the compilation it complained that
ptrdiff_t
is unrecognized, so I added#include <cstddef>
to ocilib.hpp in order to sort it out.`...
#ifndef OCILIBCPP_H_INCLUDED
#define OCILIBCPP_H_INCLUDED
/* includes */
#include <string>
#include <list>
#include <vector>
#include <cstddef>
extern "C"{
#include "ocilib.h"
}
...
`
I am compiling on openSuse 42.2 Linux with g++ 4.8.5.
Best regards.
The text was updated successfully, but these errors were encountered: