Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e7a3077 authored by Steven Moreland's avatar Steven Moreland
Browse files

Fix transitive includes.

Files relying on transitive include of utils/Log.h (and things that it
includes) from MQDescriptor.h

Test: pass
Merged-In: Iff316b21bef556bb026378b7f89e97ded3febef4
Change-Id: Iff316b21bef556bb026378b7f89e97ded3febef4
parent 69571ba2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,9 +19,9 @@
#include <unistd.h>

#include <hidl/HidlTransportSupport.h>
#include <log/log.h>
#include <utils/Errors.h>
#include <utils/StrongPointer.h>
#include <utils/Log.h>

#include "ServiceNames.h"
#include "EvsEnumerator.h"
+2 −2
Original line number Diff line number Diff line
@@ -37,10 +37,10 @@ static const float kNanoToSeconds = 0.000000001f;
#include <string.h>

#include <hidl/HidlTransportSupport.h>
#include <hwbinder/ProcessState.h>
#include <log/log.h>
#include <utils/Errors.h>
#include <utils/StrongPointer.h>
#include <utils/Log.h>
#include <hwbinder/ProcessState.h>

#include <android/log.h>
#include <android/hardware/automotive/evs/1.0/IEvsCamera.h>
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */
#define LOG_TAG "VehiclePropertyStore"
#include <android/log.h>
#include <log/log.h>

#include <common/include/vhal_v2_0/VehicleUtils.h>
#include "VehiclePropertyStore.h"
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@

#include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
#include <android/log.h>
#include <log/log.h>
#include <system/qemu_pipe.h>

#include "PipeComm.h"
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@

#include <android/hardware/automotive/vehicle/2.0/IVehicle.h>
#include <android/log.h>
#include <log/log.h>
#include <netinet/in.h>
#include <sys/socket.h>

Loading