This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string> | |
#include <iostream> | |
#include <memory> | |
/** | |
* Convert all std::strings to const char* using constexpr if (C++17) | |
*/ | |
template<typename T> | |
auto convert(T&& t) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OperaCritic | |
# | |
# VERSION 0.1.0 | |
# Note, a pre-release of 18.04 was tested but posgres did not want to start | |
# there. And in ubuntu 16.04 apache crashed (possibly due to old mod_wsgi, not | |
# tested with the pip version) | |
FROM ubuntu:17.10 | |
# Originally based on https://hub.docker.com/r/tjarosik/critic/ | |
MAINTAINER Daniel Bengtsson <[email protected]> |
OlderNewer