Merge lp:~bregma/unity/attente-1291461 into lp:unity

Proposed by Stephen M. Webb
Status: Merged
Approved by: Brandon Schaefer
Approved revision: no longer in the source branch.
Merged at revision: 3804
Proposed branch: lp:~bregma/unity/attente-1291461
Merge into: lp:unity
Prerequisite: lp:~attente/unity/1291461
Diff against target: 12 lines (+2/-0)
1 file modified
lockscreen/LockScreenAccelerators.h (+2/-0)
To merge this branch: bzr merge lp:~bregma/unity/attente-1291461
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Brandon Schaefer (community) Approve
Review via email: mp+219255@code.launchpad.net

Commit message

lockscreen/LockScreenAccelerators.h: added required header for std:vector definition

Description of the change

Add required header for the definition of std::vector in lockscreen/LockScreenAccelerators.h.

This missing header causes a FTBFS when precompiled headers are disabled.

To post a comment you must log in.
Revision history for this message
Brandon Schaefer (brandontschaefer) wrote :

LGTM

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lockscreen/LockScreenAccelerators.h'
2--- lockscreen/LockScreenAccelerators.h 2014-05-12 19:32:23 +0000
3+++ lockscreen/LockScreenAccelerators.h 2014-05-12 19:32:24 +0000
4@@ -22,6 +22,8 @@
5
6 #include <memory>
7 #include <sigc++/signal.h>
8+#include <vector>
9+
10
11 namespace unity
12 {