Skip to content

Instantly share code, notes, and snippets.

@wildmichael
wildmichael / LiteralBlock.asciidoc
Created February 29, 2012 07:40
Test case for AsciiDoc literal block rendering

Literal Block Test

This is a snippet:

#include <stdio.h>
int main()
{
  puts("Hello World!\n");
@wildmichael
wildmichael / convertBibDeskLinks.m
Created October 28, 2010 15:07
Converts the Bdsk-File-X base64 encoded aliases created by BibDesk to normal file paths
template<template<class> class T> class A {};
template<class U> class B {};
template<template<class> class T>
void fun(const A<T>& a) {}
template void fun(const A<B>& a);
namespace A {
template<typename T>
class B {
T t;
static const char* name;
};
#ifdef WITH_DECLARATION
template<> const char* B<int>::name;
#endif
}