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

Commit 0b8e3876 authored by Steven Moreland's avatar Steven Moreland
Browse files

lshal: use pragma once

For simplicity when adding new files.

Bug: N/A
Test: N/A
Change-Id: Ia66e5da5ff680b9287c4431799a935b58de02307
parent 8475fc34
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 * limitations under the License.
 */
 */


#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_COMMAND_H_
#pragma once
#define FRAMEWORK_NATIVE_CMDS_LSHAL_COMMAND_H_


#include "utils.h"
#include "utils.h"


@@ -48,5 +47,3 @@ protected:


}  // namespace lshal
}  // namespace lshal
}  // namespace android
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
+1 −4
Original line number Original line Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 * limitations under the License.
 */
 */


#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_DEBUG_COMMAND_H_
#pragma once
#define FRAMEWORK_NATIVE_CMDS_LSHAL_DEBUG_COMMAND_H_


#include <string>
#include <string>


@@ -53,5 +52,3 @@ private:


}  // namespace lshal
}  // namespace lshal
}  // namespace android
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_DEBUG_COMMAND_H_
+1 −4
Original line number Original line Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 * limitations under the License.
 */
 */


#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_HELP_COMMAND_H_
#pragma once
#define FRAMEWORK_NATIVE_CMDS_LSHAL_HELP_COMMAND_H_


#include <string>
#include <string>


@@ -44,5 +43,3 @@ public:


}  // namespace lshal
}  // namespace lshal
}  // namespace android
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_HELP_COMMAND_H_
+1 −4
Original line number Original line Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 * limitations under the License.
 */
 */


#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
#pragma once
#define FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_


#include <getopt.h>
#include <getopt.h>
#include <stdint.h>
#include <stdint.h>
@@ -206,5 +205,3 @@ private:


}  // namespace lshal
}  // namespace lshal
}  // namespace android
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_LIST_COMMAND_H_
+1 −4
Original line number Original line Diff line number Diff line
@@ -14,8 +14,7 @@
 * limitations under the License.
 * limitations under the License.
 */
 */


#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_LSHAL_H_
#pragma once
#define FRAMEWORK_NATIVE_CMDS_LSHAL_LSHAL_H_


#include <iostream>
#include <iostream>
#include <string>
#include <string>
@@ -76,5 +75,3 @@ private:


}  // namespace lshal
}  // namespace lshal
}  // namespace android
}  // namespace android

#endif  // FRAMEWORK_NATIVE_CMDS_LSHAL_LSHAL_H_
Loading