doesn't need to be virtual (#1315)

This commit is contained in:
Matthew Kennedy 2020-04-18 04:56:54 -07:00 committed by GitHub
parent 08da3ba0b6
commit 3407a4b216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public:
/** /**
* @brief Start the thread. * @brief Start the thread.
*/ */
virtual void Start() void Start()
{ {
m_thread = chThdCreateStatic(m_threadstack, sizeof(m_threadstack), m_prio, StaticThreadTaskAdapter, this); m_thread = chThdCreateStatic(m_threadstack, sizeof(m_threadstack), m_prio, StaticThreadTaskAdapter, this);
m_thread->name = GetName(); m_thread->name = GetName();