This file contains hidden or 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 <iostream> | |
| #define DEFPROP(name, type_) type_ name; | |
| #define S(_) \ | |
| _(foo, int); \ | |
| _(bar, float) | |
| struct MyStruct { |
This file contains hidden or 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
| #ifndef Py_CONFIG_H | |
| #define Py_CONFIG_H | |
| /* pyconfig.h. NOT Generated automatically by configure. | |
| This is a manually maintained version used for the Watcom, | |
| Borland and Microsoft Visual C++ compilers. It is a | |
| standard part of the Python distribution. | |
| WINDOWS DEFINES: |
This file contains hidden or 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
| import 'dart:html'; | |
| /* | |
| // compiled in cygwin with: | |
| // g++ -Wall -O2 -o skinning_test_no_simd skinning_test_no_simd.cpp | |
| #include <vector> | |
| #include <set> | |
| #include <map> | |
| #include <assert.h> |
This file contains hidden or 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
| module Main ( | |
| main | |
| ) where | |
| import Control.Monad.Trans.Either | |
| import Data.List (stripPrefix) | |
| import Data.Char(isUpper) | |
| import System.Exit (exitFailure) | |
| import Test.QuickCheck.All (quickCheckAll) |
NewerOlder