mirror of https://github.com/BOINC/boinc.git
- lib: fix compile warnings by removing virtual functions in COPROC
svn path=/trunk/boinc/; revision=23314
This commit is contained in:
parent
6c996d5d71
commit
43a7ffb95c
|
@ -2080,10 +2080,16 @@ David 1 Apr 2011
|
||||||
coproc.h
|
coproc.h
|
||||||
procinfo.h
|
procinfo.h
|
||||||
|
|
||||||
Charlie 30 Mar 2011
|
Charlie 1 Apr 2011
|
||||||
- Mac: Revise Mac project for deleted coprocs/OpenCL/include/ directory and
|
- Mac: Revise Mac project for deleted coprocs/OpenCL/include/ directory and
|
||||||
new cl_boinc.h.
|
new cl_boinc.h.
|
||||||
|
|
||||||
mac_build/
|
mac_build/
|
||||||
boinc.xcodeproj/
|
boinc.xcodeproj/
|
||||||
project.pbxproj
|
project.pbxproj
|
||||||
|
|
||||||
|
David 1 Apr 2011
|
||||||
|
- lib: fix compile warnings by removing virtual functions in COPROC
|
||||||
|
|
||||||
|
lib/
|
||||||
|
coproc.h
|
||||||
|
|
|
@ -163,7 +163,7 @@ struct COPROC {
|
||||||
OPENCL_DEVICE_PROP opencl_prop;
|
OPENCL_DEVICE_PROP opencl_prop;
|
||||||
|
|
||||||
#ifndef _USING_FCGI_
|
#ifndef _USING_FCGI_
|
||||||
virtual void write_xml(MIOFILE&);
|
void write_xml(MIOFILE&);
|
||||||
void write_request(MIOFILE&);
|
void write_request(MIOFILE&);
|
||||||
int parse(XML_PARSER&);
|
int parse(XML_PARSER&);
|
||||||
#endif
|
#endif
|
||||||
|
@ -238,7 +238,7 @@ struct COPROC_NVIDIA : public COPROC {
|
||||||
CUDA_DEVICE_PROP prop;
|
CUDA_DEVICE_PROP prop;
|
||||||
|
|
||||||
#ifndef _USING_FCGI_
|
#ifndef _USING_FCGI_
|
||||||
virtual void write_xml(MIOFILE&, bool include_request);
|
void write_xml(MIOFILE&, bool include_request);
|
||||||
#endif
|
#endif
|
||||||
COPROC_NVIDIA(): COPROC("NVIDIA"){}
|
COPROC_NVIDIA(): COPROC("NVIDIA"){}
|
||||||
void get(
|
void get(
|
||||||
|
@ -277,7 +277,7 @@ struct COPROC_ATI : public COPROC {
|
||||||
CALdeviceattribs attribs;
|
CALdeviceattribs attribs;
|
||||||
CALdeviceinfo info;
|
CALdeviceinfo info;
|
||||||
#ifndef _USING_FCGI_
|
#ifndef _USING_FCGI_
|
||||||
virtual void write_xml(MIOFILE&, bool include_request);
|
void write_xml(MIOFILE&, bool include_request);
|
||||||
#endif
|
#endif
|
||||||
COPROC_ATI(): COPROC("ATI"){}
|
COPROC_ATI(): COPROC("ATI"){}
|
||||||
void get(
|
void get(
|
||||||
|
|
Loading…
Reference in New Issue