diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-06-05 18:46:20 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-06-05 18:46:20 -0400 |
commit | 35a30239c85efd7845a2f7775b5db0e11d9b489d (patch) | |
tree | 6f30d0a5d2f478c91266671cb618141c7e8d92cb | |
parent | Fixed comments for system exceptions (diff) | |
download | ice-35a30239c85efd7845a2f7775b5db0e11d9b489d.tar.bz2 ice-35a30239c85efd7845a2f7775b5db0e11d9b489d.tar.xz ice-35a30239c85efd7845a2f7775b5db0e11d9b489d.zip |
Fixed warnings
-rw-r--r-- | csharp/test/Ice/impl/TestAMD.ice | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/impl/TestAMD.ice b/csharp/test/Ice/impl/TestAMD.ice index 0c3b091bbe3..4e9d3732d02 100644 --- a/csharp/test/Ice/impl/TestAMD.ice +++ b/csharp/test/Ice/impl/TestAMD.ice @@ -264,14 +264,14 @@ dictionary<MyEnum, MyEnumS> MyEnumMyEnumSD; struct MyStruct1 { string tesT; // Same name as the enclosing module - MyClass myClass; // Same name as an already defined class + MyClass* myClass; // Same name as an already defined class string myStruct1; // Same name as the enclosing struct } class MyClass1 { string tesT; // Same name as the enclosing module - MyClass myClass; // Same name as an already defined class + MyClass* myClass; // Same name as an already defined class string myClass1; // Same name as the enclosing class } |