This file contains 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 <functional> | |
#include <memory> | |
#include <iostream> | |
#include <tuple> | |
static constexpr const char* strval = "The quick brown fox jumps over the lazy dog"; | |
using BSTR = const char*; | |
struct foo1 | |
{ |
OlderNewer