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 "utils.h" | |
#include <map> | |
#include <set> | |
#include <vector> | |
#include <tuple> | |
#include <iostream> | |
#include <algorithm> | |
#include <exception> | |
#include <atomic> | |
#include <future> |
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
#ifndef _SHLOBJ_H | |
#define _SHLOBJ_H | |
#if __GNUC__ >= 3 | |
#pragma GCC system_header | |
#endif | |
#ifdef __cplusplus | |
extern "C" { | |
#endif |
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
#!/usr/bin/perl | |
# | |
# Made by Mateusz Pusz | |
# Please give feedback | |
# | |
# Script purpose is to add #ifdef compiler commands to all modified | |
# files in order to allow quick reversibility of the changes done | |
# between 2 provided GIT revisions. | |
# |