diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-01-19 14:26:31 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-01-19 14:26:35 -0800 |
commit | e31cb59df97602de4c79851a2cdd5617139d3f70 (patch) | |
tree | b8a298a17596527742587a993172c0be1410af38 | |
parent | 7cdd51876bd61ec81f621cee749c955f4f2d8211 (diff) | |
download | mu-e31cb59df97602de4c79851a2cdd5617139d3f70.tar.gz |
2571
Reorganize layers in preparation for a better way to manage heap allocations without ever risking use-after-free errors.
-rw-r--r-- | 038new.cc (renamed from 043new.cc) | 8 | ||||
-rw-r--r-- | 043space.cc (renamed from 044space.cc) | 0 | ||||
-rw-r--r-- | 044space_surround.cc (renamed from 045space_surround.cc) | 0 | ||||
-rw-r--r-- | 045closure_name.cc (renamed from 046closure_name.cc) | 0 | ||||
-rw-r--r-- | 046global.cc (renamed from 047global.cc) | 0 | ||||
-rw-r--r-- | 047check_type_by_name.cc (renamed from 048check_type_by_name.cc) | 0 |
6 files changed, 4 insertions, 4 deletions
diff --git a/043new.cc b/038new.cc index b0942397..33902c3a 100644 --- a/043new.cc +++ b/038new.cc @@ -352,8 +352,8 @@ long long int new_mu_string(const string& contents) { :(scenario stash_string) recipe main [ - x:address:array:character <- new [abc] - stash [foo:], x:address:array:character + 1:address:array:character <- new [abc] + stash [foo:], 1:address:array:character ] +app: foo: abc @@ -365,8 +365,8 @@ if (is_mu_string(r)) { :(scenario unicode_string) recipe main [ - x:address:array:character <- new [♠] - stash [foo:], x:address:array:character + 1:address:array:character <- new [♠] + stash [foo:], 1:address:array:character ] +app: foo: ♠ diff --git a/044space.cc b/043space.cc index 4f57ebd5..4f57ebd5 100644 --- a/044space.cc +++ b/043space.cc diff --git a/045space_surround.cc b/044space_surround.cc index 821066cc..821066cc 100644 --- a/045space_surround.cc +++ b/044space_surround.cc diff --git a/046closure_name.cc b/045closure_name.cc index 682c163f..682c163f 100644 --- a/046closure_name.cc +++ b/045closure_name.cc diff --git a/047global.cc b/046global.cc index bd433af7..bd433af7 100644 --- a/047global.cc +++ b/046global.cc diff --git a/048check_type_by_name.cc b/047check_type_by_name.cc index 4842e15c..4842e15c 100644 --- a/048check_type_by_name.cc +++ b/047check_type_by_name.cc |