Select Git revision
test_ASTSymbolTableBuilder.cpp
-
Stéphane Del Pino authored
This includes an important change in the code since one cannot reuse a variable name in a nested block (this means that if a variable is declared, one cannot declare a variable with a same name even in a nested block, while the first variable exists).
Stéphane Del Pino authoredThis includes an important change in the code since one cannot reuse a variable name in a nested block (this means that if a variable is declared, one cannot declare a variable with a same name even in a nested block, while the first variable exists).
SignalManager.hpp 300 B
#ifndef SIGNAL_MANAGER_HPP
#define SIGNAL_MANAGER_HPP
#include <iostream>
struct SignalManager
{
private:
static std::string signalName(int signal);
static void pauseForDebug();
static void handler(int signal);
public:
static void init(const bool& enable);
};
#endif // SIGNAL_MANAGER_HPP