mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 05:23:03 +01:00
Looking for extra ; at namespace declaration end
This commit is contained in:
parent
7dc4cc1ab9
commit
1aa7b9452c
@ -32,7 +32,7 @@
|
||||
* Contributor(s):
|
||||
*
|
||||
*
|
||||
* $Id: alloc.cpp,v 1.51 2004-05-13 14:04:51 kkuznetsov Exp $
|
||||
* $Id: alloc.cpp,v 1.52 2004-06-13 23:38:13 brodsom Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -164,7 +164,7 @@ Firebird::Vector<void*, MAP_CACHE_SIZE> extents_cache;
|
||||
Mutex cache_mutex;
|
||||
#endif
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace Firebird {
|
||||
|
||||
@ -1236,7 +1236,7 @@ void MemoryPool::deallocate(void *block)
|
||||
lock.leave();
|
||||
}
|
||||
|
||||
} /* namespace Firebird */
|
||||
} // namespace Firebird
|
||||
|
||||
/******************************** Global functions *****************************/
|
||||
|
||||
|
@ -266,7 +266,7 @@ public:
|
||||
Array<T, InlineStorage<T, InlineCapacity> > (InitialCapacity) {}
|
||||
};
|
||||
|
||||
} // Firebird
|
||||
} // namespace Firebird
|
||||
|
||||
#endif // CLASSES_ARRAY_H
|
||||
|
||||
|
@ -47,7 +47,7 @@ namespace {
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
} // namespace
|
||||
#define STRNCASECMP StringIgnoreCaseCompare
|
||||
#endif // HAVE_STRICMP
|
||||
#endif // HAVE_STRCASECMP
|
||||
@ -72,7 +72,7 @@ namespace {
|
||||
return m[c >> 3] & (1 << (c & 7));
|
||||
}
|
||||
};
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace Firebird {
|
||||
const AbstractString::size_type AbstractString::npos = ~0;
|
||||
|
@ -193,6 +193,7 @@ namespace Firebird
|
||||
return inherited::find(item, pos);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
} // namespace Firebird
|
||||
|
||||
#endif // CLASSES_OBJECTS_ARRAY_H
|
||||
|
@ -32,7 +32,7 @@
|
||||
* Contributor(s):
|
||||
*
|
||||
*
|
||||
* $Id: rwlock.h,v 1.19 2004-05-03 17:05:56 skidder Exp $
|
||||
* $Id: rwlock.h,v 1.20 2004-06-13 23:38:13 brodsom Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -157,7 +157,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#else
|
||||
|
||||
@ -338,7 +338,7 @@ public:
|
||||
void endWrite() { }
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#endif /*MULTI_THREAD*/
|
||||
|
||||
@ -368,7 +368,7 @@ private:
|
||||
RWLock *lock;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#endif // #ifndef CLASSES_RWLOCK_H
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
* Contributor(s):
|
||||
*
|
||||
*
|
||||
* $Id: semaphore.h,v 1.12 2004-05-24 11:23:38 kkuznetsov Exp $
|
||||
* $Id: semaphore.h,v 1.13 2004-06-13 23:38:14 brodsom Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -76,7 +76,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#else
|
||||
|
||||
@ -240,7 +240,7 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
|
||||
#else
|
||||
@ -319,7 +319,7 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#endif /*Solaris*/
|
||||
#endif /*MULTI_THREAD*/
|
||||
|
@ -533,7 +533,8 @@ namespace Firebird {
|
||||
return AutoStorage::getPool();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
} // namespace Firebird
|
||||
|
||||
#endif // CLASSES_STACK_H
|
||||
|
||||
|
@ -162,7 +162,7 @@ void ConfigFile::checkLoadConfig()
|
||||
namespace {
|
||||
class FileClose
|
||||
{
|
||||
public:
|
||||
public:
|
||||
static void clear(FILE *f)
|
||||
{
|
||||
if (f) {
|
||||
@ -170,7 +170,7 @@ public:
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
} // namespace
|
||||
|
||||
void ConfigFile::loadConfig()
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ private:
|
||||
Firebird::Mutex buffer_lock;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace Firebird {
|
||||
|
||||
|
@ -41,7 +41,7 @@ namespace fb_utils {
|
||||
str.rtrim();
|
||||
}
|
||||
char* fb_exact_name_limit(char* const str, size_t bufsize);
|
||||
}
|
||||
} // namespace fb_utils
|
||||
|
||||
#endif // INCLUDE_UTILS_PROTO_H
|
||||
|
||||
|
@ -502,7 +502,7 @@ namespace internal
|
||||
}
|
||||
return v;
|
||||
}
|
||||
}
|
||||
} // namespace internal
|
||||
|
||||
FBUDF_API ISC_TIMESTAMP* addMilliSecond(ISC_TIMESTAMP* v, int& nmseconds)
|
||||
{
|
||||
|
@ -11,6 +11,6 @@ namespace Firebird
|
||||
class list : public std::list<T, Firebird::allocator<T> >
|
||||
{
|
||||
};
|
||||
};
|
||||
} // namespace
|
||||
|
||||
#endif // FB_LIST_H
|
||||
|
@ -21,6 +21,6 @@ namespace Firebird
|
||||
public std::map<A, B, std::less<A>, Firebird::allocator<std::pair<A,B> > >
|
||||
{
|
||||
};
|
||||
};
|
||||
} // namespace
|
||||
|
||||
#endif // FB_MAP_H
|
||||
|
@ -32,7 +32,7 @@
|
||||
* Contributor(s):
|
||||
*
|
||||
*
|
||||
* $Id: evl_string.h,v 1.12 2004-05-12 19:37:17 brodsom Exp $
|
||||
* $Id: evl_string.h,v 1.13 2004-06-13 23:42:20 brodsom Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -531,6 +531,6 @@ bool LikeEvaluator<CharType>::processNextChunk(const CharType* data, SSHORT data
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#endif // JRD_EVL_STRING_H
|
||||
|
@ -88,7 +88,7 @@ namespace {
|
||||
|
||||
return fopen(filename, mode);
|
||||
}
|
||||
}
|
||||
} // namespace
|
||||
|
||||
#ifdef WIN_NT
|
||||
static const char* FOPEN_TYPE = "a+b";
|
||||
|
@ -573,7 +573,7 @@ const UCHAR LOG_end = HDR_end;
|
||||
//const int LOG_grp_cmt_wait 8 /* Group commit wait time */
|
||||
const int LOG_max = 8; /* Maximum LOG_clump value */
|
||||
|
||||
} //namespace Jrd
|
||||
} //namespace Ods
|
||||
|
||||
#endif // JRD_ODS_H
|
||||
|
||||
|
@ -31,6 +31,7 @@ public:
|
||||
enum Severity {Warning, Error};
|
||||
static void Record(Severity, string);
|
||||
};
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
||||
#endif // FIREBIRD_SYSLOG_H
|
||||
|
||||
|
@ -37,4 +37,4 @@ void Syslog::Record(Severity level, string Msg) {
|
||||
}
|
||||
syslog(priority|LOG_LOCAL3, "%s (%m)", Msg.c_str());
|
||||
}
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
@ -61,7 +61,7 @@ bool getRootFromRegistry(string& root)
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
void ConfigRoot::osConfigRoot()
|
||||
{
|
||||
|
@ -83,7 +83,7 @@ void SyslogAccess::Record(WORD wType, Firebird::string Msg) {
|
||||
}
|
||||
|
||||
class SyslogAccess iSyslogAccess;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace Firebird {
|
||||
void Syslog::Record(Severity level, Firebird::string Msg) {
|
||||
@ -99,4 +99,4 @@ namespace Firebird {
|
||||
}
|
||||
iSyslogAccess.Record(wType, Msg);
|
||||
}
|
||||
}
|
||||
} // namespace Firebird
|
||||
|
@ -52,7 +52,7 @@ namespace {
|
||||
USHORT DecrementSharedCount(const TEXT* gds32, bool sw_force,
|
||||
USHORT(*err_handler)(ULONG, const TEXT *));
|
||||
|
||||
};
|
||||
} // namespace
|
||||
|
||||
//
|
||||
// --- Public Functions ---
|
||||
@ -750,7 +750,7 @@ USHORT DecrementSharedCount(const TEXT* filename, bool sw_force,
|
||||
}
|
||||
}
|
||||
|
||||
}; // namespace { }
|
||||
} // namespace { }
|
||||
|
||||
//
|
||||
// EOF
|
||||
|
Loading…
Reference in New Issue
Block a user