From 940c99344b0518aca0700667fe03c4e640d8aefc Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Mon, 11 Apr 2016 17:55:20 +0100 Subject: [PATCH] Add a mention of macro-compat in changelog211 --- overviews/macros/changelog211.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/overviews/macros/changelog211.md b/overviews/macros/changelog211.md index 7731ec06bf..56ff794907 100644 --- a/overviews/macros/changelog211.md +++ b/overviews/macros/changelog211.md @@ -181,3 +181,5 @@ Quasiquotes is the single most impressive upgrade for reflection and macros in S def ultimateAnswer: Int = macro impl } + +40) **Use macro-compat**. [Macro-compat](https://github.com/milessabin/macro-compat) is a small library which allows you to compile macros with Scala 2.10.x which are written to the Scala 2.11/2 macro API. It brings to Scala 2.10: type aliases for the blackbox and whitebox Context types, support for macro bundles, forwarders for the 2.11 API and support for using Tree in the macro def type signatures.