about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-29 14:58:16 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-29 14:58:16 -0700
commitd41955c10821fc8f435173efe8cd355cc3693801 (patch)
tree7deaf70df200b97df0c46e65cc6f2e23495d0997 /010vm.cc
parentceb33ee40f2c210c02d59469f7146cefdb4b6fba (diff)
downloadmu-d41955c10821fc8f435173efe8cd355cc3693801.tar.gz
3279
Stop inlining functions because that will complicate separate
compilation. It also simplifies the code without impacting performance.
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index 6728a0a3..22d9d9ad 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -509,7 +509,7 @@ string to_string(const reagent& r) {
 }
 
 // special name for ignoring some products
-inline bool is_dummy(const reagent& x) {
+bool is_dummy(const reagent& x) {
   return x.name == "_";
 }