all repos — fluxbox @ 4d57d6b3943bc352b0b6d3223d017af8943b1f80

custom fork of the fluxbox windowmanager

add missing #include <cassert>
rathnor rathnor
commit

4d57d6b3943bc352b0b6d3223d017af8943b1f80

parent

41f40a68db72ae685af0b184bf1d26531ee7e836

5 files changed, 11 insertions(+), 4 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.2: +*03/04/27 + * Fix cassert #includes (Simon) + Window.cc WinClient.cc FbRun.cc signaltest.cc *03/04/26: * Add remember layer (Simon) Remember.hh/cc
M src/WinClient.ccsrc/WinClient.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: WinClient.cc,v 1.4 2003/04/25 11:21:17 fluxgen Exp $ +// $Id: WinClient.cc,v 1.5 2003/04/27 02:26:21 rathnor Exp $ #include "WinClient.hh"

@@ -33,6 +33,8 @@

#include <iostream> #include <algorithm> #include <iterator> +#include <cassert> + using namespace std; WinClient::WinClient(Window win, FluxboxWindow &fbwin):FbTk::FbWindow(win),
M src/Window.ccsrc/Window.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.cc,v 1.149 2003/04/26 05:42:35 rathnor Exp $ +// $Id: Window.cc,v 1.150 2003/04/27 02:26:21 rathnor Exp $ #include "Window.hh"

@@ -55,7 +55,7 @@

#include <cstring> #include <cstdio> #include <iostream> - +#include <cassert> using namespace std;
M src/tests/signaltest.ccsrc/tests/signaltest.cc

@@ -22,6 +22,7 @@

#include "../SignalHandler.hh" #include <iostream> +#include <cassert> using namespace std; using namespace FbTk;
M util/fbrun/FbRun.ccutil/fbrun/FbRun.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbRun.cc,v 1.10 2003/03/22 11:33:04 fluxgen Exp $ +// $Id: FbRun.cc,v 1.11 2003/04/27 02:26:21 rathnor Exp $ #include "FbRun.hh"

@@ -36,6 +36,7 @@ #include <unistd.h>

#include <iostream> #include <fstream> +#include <cassert> using namespace std; FbRun::FbRun(int x, int y, size_t width):