summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/internal/SymbolTable.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-06-13 18:04:20 +0000
committerPaul Phillips <paulp@improving.org>2011-06-13 18:04:20 +0000
commit21584ed38ea6cbb8932206608ce47d975a127d8d (patch)
tree8a63b78349e3668ea21c8b6afb66a1260b40c5f6 /src/compiler/scala/reflect/internal/SymbolTable.scala
parentf44c01eab212e3ab518880500953f485b49a2eee (diff)
downloadscala-21584ed38ea6cbb8932206608ce47d975a127d8d.tar.gz
scala-21584ed38ea6cbb8932206608ce47d975a127d8d.tar.bz2
scala-21584ed38ea6cbb8932206608ce47d975a127d8d.zip
Marked some more by-name-argument-using methods...
Marked some more by-name-argument-using methods with final @inline to make possible and then encourage their inlining. Knocked almost 300 more classfiles and 200K off the compiler jar. No review.
Diffstat (limited to 'src/compiler/scala/reflect/internal/SymbolTable.scala')
-rw-r--r--src/compiler/scala/reflect/internal/SymbolTable.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/reflect/internal/SymbolTable.scala b/src/compiler/scala/reflect/internal/SymbolTable.scala
index 0687a50e2a..bb0824c5c1 100644
--- a/src/compiler/scala/reflect/internal/SymbolTable.scala
+++ b/src/compiler/scala/reflect/internal/SymbolTable.scala
@@ -27,7 +27,7 @@ abstract class SymbolTable extends /*reflect.generic.Universe
with Required
{
def rootLoader: LazyType
- def log(msg: => AnyRef)
+ def log(msg: => AnyRef): Unit
def abort(msg: String): Nothing = throw new Error(msg)
def abort(): Nothing = throw new Error()