Skip to content
Snippets Groups Projects
Commit 7e76b645 authored by DrZiplok@gmail.com's avatar DrZiplok@gmail.com
Browse files

Give AP_GPS_None a ctor so that it fits in.

git-svn-id: https://arducopter.googlecode.com/svn/trunk@1247 f9c3cf11-9bcb-44bc-f272-b75c42450872
parent 8da4a29d
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
class AP_GPS_None : public GPS class AP_GPS_None : public GPS
{ {
public:
AP_GPS_None(Stream *s) : GPS(s) {}
virtual void init(void) {}; virtual void init(void) {};
virtual bool read(void) { return false; }; virtual bool read(void) { return false; };
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment