Skip to content

Instantly share code, notes, and snippets.

View mkmkme's full-sized avatar
🦀
crab

Mikhail Koviazin mkmkme

🦀
crab
View GitHub Profile
@mkmkme
mkmkme / main.cpp
Last active August 29, 2015 14:20
operator overloading
#include <iostream>
#include <cstdint>
using namespace std;
class IR
{
public:
uint32_t m_a;
IR() : m_a(0) { cout << "IR::IR()" << endl; }