diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 00:16:25 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 00:16:25 -0700 |
commit | 6324f6af51318df7979ba92d4572d6c62bb40329 (patch) | |
tree | bad69476fdd2d2b002458138010b13aeb81041dc /cpp/010vm | |
parent | 26785f2a7c2937765f1c0c9e26ce6b80aa4f8dfe (diff) | |
download | mu-6324f6af51318df7979ba92d4572d6c62bb40329.tar.gz |
1032 - stop clearing types after every test
Diffstat (limited to 'cpp/010vm')
-rw-r--r-- | cpp/010vm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/010vm b/cpp/010vm index 7116b555..931ae673 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -93,7 +93,7 @@ void setup_types() { Type[array].name = "array"; // End Mu Types Initialization. } -:(before "End Setup") +:(before "End One-time Setup") setup_types(); :(before "End Types") |