Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Unified Diff: printing/backend/cups_jobs.cc

Issue 2784083002: Fix style for aggregate initilaizer. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/cups_jobs.cc
diff --git a/printing/backend/cups_jobs.cc b/printing/backend/cups_jobs.cc
index 8d8640e354e57b36c865aad10a90ead89a8a3f17..8faf86a8f39a4c20900c25d9d35564ddfab5f00d 100644
--- a/printing/backend/cups_jobs.cc
+++ b/printing/backend/cups_jobs.cc
@@ -85,8 +85,8 @@ const char kDeveloperEmpty[] = "developer-empty";
const char kInterpreterResourceUnavailable[] =
"interpreter-resource-unavailable";
-constexpr std::array<const char* const, 3> kPrinterAttributes = {
- kPrinterState, kPrinterStateReasons, kPrinterStateMessage};
+constexpr std::array<const char* const, 3> kPrinterAttributes{
+ {kPrinterState, kPrinterStateReasons, kPrinterStateMessage}};
std::unique_ptr<ipp_t, void (*)(ipp_t*)> WrapIpp(ipp_t* ipp) {
return std::unique_ptr<ipp_t, void (*)(ipp_t*)>(ipp, &ippDelete);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698