mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
Added some explicit templates
This commit is contained in:
parent
2b6b61642b
commit
e9995b300f
4 changed files with 10 additions and 0 deletions
|
@ -280,3 +280,5 @@ LocalConfig::readConnectString(const char * connectString){
|
|||
}
|
||||
return return_value;
|
||||
}
|
||||
|
||||
template class Vector<MgmtSrvrId>;
|
||||
|
|
|
@ -2883,3 +2883,6 @@ MgmtSrvr::setDbParameter(int node, int param, const char * value,
|
|||
msg.assign("Success");
|
||||
return 0;
|
||||
}
|
||||
|
||||
template class Vector<SigMatch>;
|
||||
template bool SignalQueue::waitFor<SigMatch>(Vector<SigMatch>&, SigMatch*&, NdbApiSignal*&, unsigned);
|
||||
|
|
|
@ -1271,3 +1271,7 @@ MgmApiSession::setParameter(Parser_t::Context &,
|
|||
m_output->println("result: %d", ret);
|
||||
m_output->println("");
|
||||
}
|
||||
|
||||
template class MutexVector<int>;
|
||||
template class Vector<ParserRow<MgmApiSession> const*>;
|
||||
template class Vector<unsigned short>;
|
||||
|
|
|
@ -316,6 +316,7 @@ TransporterFacade::getIsNodeSendable(NodeId n) const {
|
|||
"%d of node: %d",
|
||||
node.m_info.m_type, n);
|
||||
abort();
|
||||
return false; // to remove compiler warning
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue