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
template <typename T> | |
struct A { | |
template <typename V> | |
void foo() { } | |
template <typename U> | |
struct B { | |
A* a_; | |
void foo() { return a_->foo<U>(); } | |
}; |
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
/* | |
* Copyright (C) 2015 Naios <[email protected]> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, |
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 <cstdint> | |
#include <iostream> | |
#include <functional> | |
#include <vector> | |
#include <algorithm> | |
using std::vector; | |
using std::function; | |
using std::cout; | |
using std::endl; |
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
TEMPLATE = lib | |
INCLUDEPATH += $$PWD | |
INCLUDEPATH += $$PWD/.. | |
INCLUDEPATH += $$PWD/ape | |
INCLUDEPATH += $$PWD/asf | |
INCLUDEPATH += $$PWD/CMakeFiles | |
INCLUDEPATH += $$PWD/flac | |
INCLUDEPATH += $$PWD/it | |
INCLUDEPATH += $$PWD/mod |