From 9153118afe59647ce4571ad4c4258bb62daa873f Mon Sep 17 00:00:00 2001
From: Henry <Henry>
Date: Tue, 15 Jul 2014 21:20:42 +0100
Subject: [PATCH] twoPhaseMixture: return phase names by reference

---
 etc/controlDict                                             | 4 ++--
 .../twoPhaseMixture/twoPhaseMixture/twoPhaseMixture.H       | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/etc/controlDict b/etc/controlDict
index 68d8f86a44f..022da2b7058 100644
--- a/etc/controlDict
+++ b/etc/controlDict
@@ -1,7 +1,7 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  2.0.0                                 |
+|  \\    /   O peration     | Version:  2.3.x                                 |
 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
@@ -40,7 +40,7 @@ InfoSwitches
     writeDictionaries 0;
 
     // Allow case-supplied C++ code (#codeStream, codedFixedValue)
-    allowSystemOperations   0;
+    allowSystemOperations   1;
 }
 
 
diff --git a/src/transportModels/twoPhaseMixture/twoPhaseMixture/twoPhaseMixture.H b/src/transportModels/twoPhaseMixture/twoPhaseMixture/twoPhaseMixture.H
index aa5ae24d04b..3bd8108d9af 100644
--- a/src/transportModels/twoPhaseMixture/twoPhaseMixture/twoPhaseMixture.H
+++ b/src/transportModels/twoPhaseMixture/twoPhaseMixture/twoPhaseMixture.H
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2011-2013 OpenFOAM Foundation
+    \\  /    A nd           | Copyright (C) 2011-2014 OpenFOAM Foundation
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -78,12 +78,12 @@ public:
 
     // Member Functions
 
-        const word phase1Name() const
+        const word& phase1Name() const
         {
             return phase1Name_;
         }
 
-        const word phase2Name() const
+        const word& phase2Name() const
         {
             return phase2Name_;
         }
-- 
GitLab