浏览代码

Use /* instead of #if 0 for NamedEntity interface (#1006)

Geoff Romer 4 年之前
父节点
当前提交
e533442028
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      executable_semantics/ast/static_scope.h

+ 2 - 2
executable_semantics/ast/static_scope.h

@@ -27,7 +27,7 @@ static constexpr std::string_view AnonymousName = "_";
 // True if NodeType::ImplementsCarbonNamedEntity is valid and names a type,
 // indicating that NodeType implements the NamedEntity interface, which means
 // it must define the following methods, with contracts as documented.
-#if 0
+/*
   // Returns the static type of an IdentifierExpression that names *this.
   auto static_type() const -> const Value&;
 
@@ -37,7 +37,7 @@ static constexpr std::string_view AnonymousName = "_";
   // Returns the name of an IdentifierExpression that names *this. If *this
   // is anonymous, returns AnonymousName.
   auto name() const -> std::string_view;
-#endif
+*/
 // NodeType must be derived from AstNode.
 //
 // TODO: consider turning the above documentation into real code, as sketched