Commit 44699c59 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #9799 from alalek:ocl_program

parents fee87ea3 6be25727
......@@ -613,8 +613,10 @@ public:
String getPrefix() const;
static String getPrefix(const String& buildflags);
protected:
struct Impl;
inline Impl* getImpl() const { return (Impl*)p; }
protected:
Impl* p;
};
......@@ -635,8 +637,9 @@ public:
const String& source() const;
hash_t hash() const; // deprecated
protected:
struct Impl;
inline Impl* getImpl() const { return (Impl*)p; }
protected:
Impl* p;
};
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment