Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Unified Diff: src/IceTranslator.h

Issue 1216963007: Doxygenize the documentation comments (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/IceTranslator.h
diff --git a/src/IceTranslator.h b/src/IceTranslator.h
index 29b2d77eb73ce02578d5194c3042fb5eea7c2431..a3711266a6656ae630f3689ea7e6adb8e7557bd3 100644
--- a/src/IceTranslator.h
+++ b/src/IceTranslator.h
@@ -29,9 +29,9 @@ class Cfg;
class VariableDeclaration;
class GlobalContext;
-// Base class for translating ICE to machine code. Derived classes convert
-// other intermediate representations down to ICE, and then call the appropriate
-// (inherited) methods to convert ICE into machine instructions.
+/// Base class for translating ICE to machine code. Derived classes convert
+/// other intermediate representations down to ICE, and then call the appropriate
jvoung (off chromium) 2015/06/30 22:05:48 reflow
ascull 2015/07/06 19:29:10 Done.
+/// (inherited) methods to convert ICE into machine instructions.
class Translator {
Translator() = delete;
Translator(const Translator &) = delete;
@@ -70,7 +70,7 @@ public:
protected:
GlobalContext *Ctx;
uint32_t NextSequenceNumber;
- // ErrorCode of the translation.
+ /// ErrorCode of the translation.
ErrorCode ErrorStatus;
};

Powered by Google App Engine
This is Rietveld 408576698