OpenClonk
C4Reloc.cpp File Reference
#include "C4Include.h"
#include "config/C4Reloc.h"
#include "game/C4Application.h"
Include dependency graph for C4Reloc.cpp:

Go to the source code of this file.

Functions

bool operator== (const C4Reloc::const_iterator &a, const C4Reloc::const_iterator &b)
 
bool operator!= (const C4Reloc::const_iterator &a, const C4Reloc::const_iterator &b)
 

Variables

C4Reloc Reloc
 

Function Documentation

◆ operator!=()

bool operator!= ( const C4Reloc::const_iterator a,
const C4Reloc::const_iterator b 
)

Definition at line 137 of file C4Reloc.cpp.

138 {
139  return !(a == b);
140 }
#define a
#define b

◆ operator==()

bool operator== ( const C4Reloc::const_iterator a,
const C4Reloc::const_iterator b 
)

Definition at line 130 of file C4Reloc.cpp.

131 {
132  if (!a.subdirIters.empty()) return false;
133  if (!b.subdirIters.empty()) return false;
134  return a.pathListIter == b.pathListIter;
135 }

Variable Documentation

◆ Reloc