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 <cstdio> | |
template<class T> | |
class Pointer | |
{ | |
T *v; | |
public: | |
Pointer(T *t) : v(t) {} | |
__attribute__((used)) | |
T *operator ->() |
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
$ apt-cache show weston | grep Depends: | sed 's/Depends: //;s/, */\n/g' | while read pkg version; do echo $pkg $version; apt-cache policy $pkg | grep Installed; echo; done | |
libegl1-mesa (>= 8.0-2) | |
Installed: 9.1.6-2+b1 | |
libegl1-mesa-drivers (>= 8.0-2) | |
Installed: 9.1.6-2+b1 | |
libgles2-mesa (>= 8.0-2) | |
Installed: 9.1.6-2+b1 |
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
//#define current_target X86 | |
#define current_target bogus | |
#define __STDC_LIMIT_MACROS | |
#define __STDC_CONSTANT_MACROS | |
#include "llvm-c/Target.h" | |
#include <stdbool.h> | |
#define JOIN2(a, b) a ## b | |
#define JOIN(a, b) JOIN2(a, b) |
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
#!/bin/bash -e | |
SERVER=${1:-server.themanaworld.org} | |
PORT=${2:-6901} | |
die() { | |
echo "$1" >&2 | |
exit 1 | |
} | |
readbyte() { | |
local byte REPLY |
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
__attribute__((error("don't call me"))) | |
void dont_call_me(); | |
inline | |
void wrapper() | |
{ | |
dont_call_me(); | |
} | |
void conditional() |
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
$ gem install github-pages --user | |
Building native extensions. This could take a while... | |
ERROR: Error installing github-pages: | |
ERROR: Failed to build gem native extension. | |
/usr/bin/ruby1.9.1 extconf.rb | |
/usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- mkmf (LoadError) | |
from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require' | |
from extconf.rb:1:in `<main>' |
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
$ make docs | |
cfg: build triple x86_64-unknown-linux-gnu | |
cfg: host triples x86_64-unknown-linux-gnu | |
cfg: target triples x86_64-unknown-linux-gnu | |
cfg: enabling more debugging (CFG_ENABLE_DEBUG) | |
cfg: host for x86_64-unknown-linux-gnu is x86_64 | |
cfg: os for x86_64-unknown-linux-gnu is unknown-linux-gnu | |
cfg: using gcc | |
cfg: no llnextgen found, omitting grammar-verification | |
version-info: doc/version_info.html |
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
From 494e6ef67565f7358b415d015018fad6357484e7 Mon Sep 17 00:00:00 2001 | |
From: Ben Longbons <[email protected]> | |
Date: Sat, 16 Nov 2013 00:52:54 -0800 | |
Subject: [PATCH] Allow different attachment policy for pointer and reference | |
--- | |
include/clang/Format/Format.h | 6 +++++- | |
lib/Format/Format.cpp | 23 +++++++++++++++++------ | |
lib/Format/TokenAnnotator.cpp | 6 +++--- | |
3 files changed, 25 insertions(+), 10 deletions(-) |
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 <memory> | |
#include <vector> | |
struct Model | |
{ | |
virtual ~Model() {} | |
}; | |
struct PositionedModel : public Model | |
{ |
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
// amd64 | |
typedef unsigned long size_t; | |
void *tor_realloc(void *, size_t); | |
typedef struct smartlist_t { | |
/** @{ */ | |
/** <b>list</b> has enough capacity to store exactly <b>capacity</b> elements | |
* before it needs to be resized. Only the first <b>num_used</b> (\<= | |
* capacity) elements point to valid data. |