diff options
author | Jean Christophe Beyler <jean.christophe.beyler@intel.com> | 2014-12-04 11:20:20 -0800 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2015-01-21 17:33:12 +0000 |
commit | 0ada95d8de4b04b5f201b4b7e9c3c2fd2cc321ae (patch) | |
tree | 97231800ac31c9ae1ce6351ca94d1d35dfc8caf8 /compiler/optimizing/graph_visualizer.cc | |
parent | 03c45ccf104fade857cb01a2b760b08fad5e304a (diff) | |
download | android_art-0ada95d8de4b04b5f201b4b7e9c3c2fd2cc321ae.tar.gz android_art-0ada95d8de4b04b5f201b4b7e9c3c2fd2cc321ae.tar.bz2 android_art-0ada95d8de4b04b5f201b4b7e9c3c2fd2cc321ae.zip |
ART: Replace NULL to nullptr in the optimizing compiler
Replace macro NULL to the nullptr variation for C++.
Change-Id: Ib6e48dd4bb3c254343383011b67372622578ca76
Signed-off-by: Jean Christophe Beyler <jean.christophe.beyler@intel.com>
Diffstat (limited to 'compiler/optimizing/graph_visualizer.cc')
-rw-r--r-- | compiler/optimizing/graph_visualizer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/graph_visualizer.cc b/compiler/optimizing/graph_visualizer.cc index 5d1703e237..99b5219131 100644 --- a/compiler/optimizing/graph_visualizer.cc +++ b/compiler/optimizing/graph_visualizer.cc @@ -66,7 +66,7 @@ class HGraphVisualizerPrinter : public HGraphVisitor { void PrintTime(const char* name) { AddIndent(); - output_ << name << " " << time(NULL) << std::endl; + output_ << name << " " << time(nullptr) << std::endl; } void PrintInt(const char* name, int value) { |