diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-05-30 21:51:00 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-05-30 21:51:00 +0000 |
commit | 0289d54520ba66b0d7f0913a89a524c89a01b87e (patch) | |
tree | 4885829af30fe5d05f6df76813537b18d6a3657c /media | |
parent | 8c268801f8b3075b97c40cd128dd7bebd7d35ad0 (diff) | |
parent | 6ed77c130d80fe607ec91ada4cf5718d512b4ad5 (diff) | |
download | frameworks_av-0289d54520ba66b0d7f0913a89a524c89a01b87e.zip frameworks_av-0289d54520ba66b0d7f0913a89a524c89a01b87e.tar.gz frameworks_av-0289d54520ba66b0d7f0913a89a524c89a01b87e.tar.bz2 |
am 6ed77c13: am 2d0e8d8f: Merge "libcpustats: Turn on -Werror"
* commit '6ed77c130d80fe607ec91ada4cf5718d512b4ad5':
libcpustats: Turn on -Werror
Diffstat (limited to 'media')
-rw-r--r-- | media/libcpustats/Android.mk | 4 | ||||
-rw-r--r-- | media/libcpustats/ThreadCpuUsage.cpp | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/media/libcpustats/Android.mk b/media/libcpustats/Android.mk index b506353..ee283a6 100644 --- a/media/libcpustats/Android.mk +++ b/media/libcpustats/Android.mk @@ -1,4 +1,4 @@ -LOCAL_PATH:= $(call my-dir) +LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) @@ -8,4 +8,6 @@ LOCAL_SRC_FILES := \ LOCAL_MODULE := libcpustats +LOCAL_CFLAGS := -std=gnu++11 -Werror + include $(BUILD_STATIC_LIBRARY) diff --git a/media/libcpustats/ThreadCpuUsage.cpp b/media/libcpustats/ThreadCpuUsage.cpp index 637402a..cfdcb51 100644 --- a/media/libcpustats/ThreadCpuUsage.cpp +++ b/media/libcpustats/ThreadCpuUsage.cpp @@ -21,7 +21,6 @@ #include <stdlib.h> #include <time.h> -#include <utils/Debug.h> #include <utils/Log.h> #include <cpustats/ThreadCpuUsage.h> @@ -218,7 +217,7 @@ uint32_t ThreadCpuUsage::getCpukHz(int cpuNum) #define FREQ_SIZE 64 char freq_path[FREQ_SIZE]; #define FREQ_DIGIT 27 - COMPILE_TIME_ASSERT_FUNCTION_SCOPE(MAX_CPU <= 10); + static_assert(MAX_CPU <= 10, "MAX_CPU too large"); #define FREQ_PATH "/sys/devices/system/cpu/cpu?/cpufreq/scaling_cur_freq" strlcpy(freq_path, FREQ_PATH, sizeof(freq_path)); freq_path[FREQ_DIGIT] = cpuNum + '0'; |