Skip to content

Commit

Permalink
Rename ZMACRO_typeof-->ZMACRO_decltype.
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectricMagic committed Apr 6, 2012
1 parent b199220 commit 7462b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zoolib/ZMACRO_decltype.h
Expand Up @@ -26,8 +26,8 @@ OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// Just assume GCC for now.
#define ZMACRO_decltype(expr) __typeof__(expr)
#define ZMACRO_auto(name,expr) ZMACRO_typeof(expr) name(expr)
#define ZMACRO_auto_(name,expr) ZMACRO_typeof(expr) name = (expr)
#define ZMACRO_auto(name,expr) ZMACRO_decltype(expr) name(expr)
#define ZMACRO_auto_(name,expr) ZMACRO_decltype(expr) name = (expr)

#elif _MSC_VER >= 1600

Expand Down

0 comments on commit 7462b9d

Please sign in to comment.