]> gitweb.factorcode.org Git - factor.git/blob - extra/alien/cxx/cxx.factor
Update some copyright headers to follow the current convention
[factor.git] / extra / alien / cxx / cxx.factor
1 ! Copyright (C) 2010 Joe Groff.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: alien kernel ;
4 IN: alien.cxx
5
6 SINGLETONS: g++ visual-c++ ;
7 UNION: c++-abi
8     g++ visual-c++ ;
9
10 GENERIC: c++>c-abi ( c++-abi -- c-abi )
11
12 M: g++ c++>c-abi drop cdecl ;
13 M: visual-c++ c++>c-abi drop thiscall ;