dxx-rebirth/common/include/varutil.h
Kp 12b57e84e6 Switch most in-tree http:// links to https://
For each link given as http://, verify that the site is accessible over
https:// and, if so, switch to it.  These domains were converted:

* llvm.org
* clang.llvm.org
* en.cppreference.com
* www.dxx-rebirth.com
* www.libsdl.org
* www.scons.org
2018-09-02 00:57:29 +00:00

31 lines
873 B
C++

/*
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
#pragma once
#include <cstddef>
#include <algorithm>
#include "dxxsconf.h"
#include "compiler-array.h"
template <std::size_t N>
class cstring_tie
{
public:
static const std::size_t maximum_arity = N;
typedef array<const char *, maximum_arity> array_t;
template <typename... Args>
cstring_tie(Args&&... args) : p(array_t{{args...}}), m_count(sizeof...(Args))
{
static_assert(sizeof...(Args) <= maximum_arity, "too many arguments to cstring_tie");
}
unsigned count() const { return m_count; }
const char *string(std::size_t i) const { return p[i]; }
private:
array_t p;
unsigned m_count;
};