Fix a bunch of lint.
There are still about 1800 lint warnings, so don't get too excited...
Change-Id: I2394bd6e750b94060231378b3a7a88b87f70c757
diff --git a/src/safe_map.h b/src/safe_map.h
index 0af158f..6df05e2 100644
--- a/src/safe_map.h
+++ b/src/safe_map.h
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
#ifndef ART_SRC_SAFE_MAP_H_
#define ART_SRC_SAFE_MAP_H_
@@ -20,7 +36,10 @@
typedef typename ::std::map<K, V, Comparator>::size_type size_type;
typedef typename ::std::map<K, V, Comparator>::value_type value_type;
- Self& operator=(const Self& rhs) { map_ = rhs.map_; return *this; }
+ Self& operator=(const Self& rhs) {
+ map_ = rhs.map_;
+ return *this;
+ }
iterator begin() { return map_.begin(); }
const_iterator begin() const { return map_.begin(); }