mirror of
https://github.com/MariaDB/server.git
synced 2026-04-26 10:15:29 +02:00
WL#5486: Remove code for unsupported platforms
Remove Netware specific code.
This commit is contained in:
parent
ef27448469
commit
07e7b4d6fe
155 changed files with 298 additions and 7111 deletions
|
|
@ -102,16 +102,7 @@ template <> class Bitmap<64>
|
|||
ulonglong map;
|
||||
public:
|
||||
Bitmap<64>() { }
|
||||
#if defined(__NETWARE__) || defined(__MWERKS__)
|
||||
/*
|
||||
Metwork compiler gives error on Bitmap<64>
|
||||
Changed to Bitmap, since in this case also it will proper construct
|
||||
this class
|
||||
*/
|
||||
explicit Bitmap(uint prefix_to_set) { set_prefix(prefix_to_set); }
|
||||
#else
|
||||
explicit Bitmap<64>(uint prefix_to_set) { set_prefix(prefix_to_set); }
|
||||
#endif
|
||||
void init() { }
|
||||
void init(uint prefix_to_set) { set_prefix(prefix_to_set); }
|
||||
uint length() const { return 64; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue