summaryrefslogtreecommitdiff
path: root/channels/h323/ast_h323.cxx
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-07-14 15:44:07 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-07-14 15:44:07 +0000
commit28534ea921a4109ed9e548b7bccbee0d41ecd04d (patch)
treea02974efdea20c811bacb24f90985da6e7c08cab /channels/h323/ast_h323.cxx
parentc4c3e2f8754dce3e3244a9d0c1305b01e77af48e (diff)
Swap "static" and "const", so that "static" appears at the beginning of each
declaration (suppresses a warning). (closes issue #13070) Reported by: gknispel_proformatique Patches: asterisk_trunk_const_static.patch uploaded by gknispel (license 261) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130697 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/h323/ast_h323.cxx')
-rw-r--r--channels/h323/ast_h323.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx
index a55a89574..2ed94b5c3 100644
--- a/channels/h323/ast_h323.cxx
+++ b/channels/h323/ast_h323.cxx
@@ -956,7 +956,7 @@ static BOOL FetchCiscoTunneledInfo(Q931 &q931, const H323SignalPDU &pdu)
static BOOL EmbedCiscoTunneledInfo(H323SignalPDU &pdu)
{
- const static struct {
+ static const struct {
Q931::InformationElementCodes ie;
BOOL dontDelete;
} codes[] = {
@@ -1095,7 +1095,7 @@ static BOOL QSIGTunnelRequested(H323SignalPDU &pdu)
static BOOL EmbedQSIGTunneledInfo(H323SignalPDU &pdu)
{
- const static Q931::InformationElementCodes codes[] =
+ static const Q931::InformationElementCodes codes[] =
{ Q931::RedirectingNumberIE, Q931::FacilityIE };
Q931 &q931 = pdu.GetQ931();