OpenXRay/xray-16

Get rid of Loki

Aberta

#240 aberto em 9 de set. de 2018

 (3 comentários) (2 reações) (0 responsável)C++ (519 forks)auto 404
Code QualityExternal (3rd party)Help wantedPortability

Métricas do repositório

Stars
 (3.524 estrelas)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

Loki is a C++ library found in the sdk folder. There are several reasons to remove it:

  • Most of the stuff of this library, written for C++98 by Andrei Alexandrescu, can be found in C++11, e.g. Loki::Select is just std::conditional, Loki::IsSameType can be replaced with std::is_same.
  • Some of the code does not compile in GCC. (With some changes, it compiled in GCC)
  • The things that haven't been included in modern C++, can be rewritten with fewer lines of code.
  • It's barely used.

Guia do colaborador