Skip to content

Commit 00c4011

Browse files
committed
Remove macros
1 parent f599e69 commit 00c4011

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/library/scala/StringContext.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ case class StringContext(parts: String*) {
150150
*/
151151
// The implementation is hardwired to `scala.tools.reflect.MacroImplementations.macro_StringInterpolation_f`
152152
// Using the mechanism implemented in `scala.tools.reflect.FastTrack`
153-
def f[A >: Any](args: A*): String = macro ???
153+
def f[A >: Any](args: A*): String = ???
154154
}
155155

156156
object StringContext {

src/library/scala/reflect/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ package object reflect {
6060
// implementation is hardwired into `scala.reflect.reify.Taggers`
6161
// using the mechanism implemented in `scala.tools.reflect.FastTrack`
6262
// todo. once we have implicit macros for tag generation, we can remove this anchor
63-
private[scala] def materializeClassTag[T](): ClassTag[T] = macro ???
63+
private[scala] def materializeClassTag[T](): ClassTag[T] = ???
6464
}
6565

6666
/** An exception that indicates an error during Scala reflection */

0 commit comments

Comments
 (0)